RetrieveSearchDataParam.java
312 Bytes
package com.objecteye.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@AllArgsConstructor
@NoArgsConstructor
@Data
public class RetrieveSearchDataParam {
private int topN;
private float threshold;
private int threadNum;
private float[] feature;
}