panda.ex.gcloud.vision.images.ImageContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-tube Show documentation
Show all versions of panda-tube Show documentation
Panda Tube is a Web Service API client for WordPress XML-RPC, Google Vision API, etc.
The newest version!
package panda.ex.gcloud.vision.images;
import java.util.List;
public class ImageContext {
private LatLongRect latLongRect;
private List languageHints;
private List cropHintsParams;
public LatLongRect getLatLongRect() {
return latLongRect;
}
public void setLatLongRect(LatLongRect latLongRect) {
this.latLongRect = latLongRect;
}
public List getLanguageHints() {
return languageHints;
}
public void setLanguageHints(List languageHints) {
this.languageHints = languageHints;
}
public List getCropHintsParams() {
return cropHintsParams;
}
public void setCropHintsParams(List cropHintsParams) {
this.cropHintsParams = cropHintsParams;
}
}