59 lines
1 KiB
Java
59 lines
1 KiB
Java
package it.acxent.face;
|
|
|
|
import it.acxent.common.Parm;
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.ResParm;
|
|
import it.acxent.dm.FaceDetectionMethod;
|
|
import java.sql.Timestamp;
|
|
|
|
public interface FotoI {
|
|
ApplParmFull getApFull();
|
|
|
|
long getId_foto();
|
|
|
|
String getFileNameFaceRecognition();
|
|
|
|
boolean hasFotoFaces();
|
|
|
|
long getNumOfFaces();
|
|
|
|
ResParm _ricalcolaFotoFaces();
|
|
|
|
Parm getParm(String paramString);
|
|
|
|
long getFlgFotoSearch();
|
|
|
|
Timestamp getTsInserimento();
|
|
|
|
String getMd5();
|
|
|
|
void setMd5(String paramString);
|
|
|
|
void findByPrimaryKey(long paramLong);
|
|
|
|
ResParm save();
|
|
|
|
long getHeight();
|
|
|
|
long getWidth();
|
|
|
|
FaceDetectionMethod getFaceDetectionMethodReal();
|
|
|
|
long getDimMinFotoFaceReal();
|
|
|
|
long getMargineFotoBottom();
|
|
|
|
long getMargineFotoTop();
|
|
|
|
long getMargineFotoSx();
|
|
|
|
long getMargineFotoDx();
|
|
|
|
double getDetectFaceConfidentThresold();
|
|
|
|
void setId_faceDetectionMethod(long paramLong);
|
|
|
|
long getId_faceDetectionMethod();
|
|
|
|
long getFaceSize();
|
|
}
|