Fix .gitignore, move vision package out of common

This commit is contained in:
Banks Troutman
2020-06-28 04:40:43 -04:00
parent bdbd6b9d18
commit f2fbe9dd6e
214 changed files with 485 additions and 7768 deletions

View File

@@ -5,49 +5,41 @@ import io.javalin.http.Context;
public class RequestHandler {
private static final ObjectMapper kObjectMapper = new ObjectMapper();
private static final ObjectMapper kObjectMapper = new ObjectMapper();
/**
* Parses and saves general settings to the config manager.
*/
public static void onGeneralSettings(Context context) {
return;
}
/** Parses and saves general settings to the config manager. */
public static void onGeneralSettings(Context context) {
return;
}
/**
* Parses and saves camera settings (FOV and tilt) to the current camera.
*/
public static void onCameraSettings(Context context) {
return;
}
/** Parses and saves camera settings (FOV and tilt) to the current camera. */
public static void onCameraSettings(Context context) {
return;
}
/**
* Duplicates the selected camera
*/
public static void onDuplicatePipeline(Context context) {
return;
}
/** Duplicates the selected camera */
public static void onDuplicatePipeline(Context context) {
return;
}
public static void onCalibrationStart(Context context) {
return;
}
public static void onCalibrationStart(Context context) {
return;
}
public static void onSnapshot(Context context) {
return;
}
public static void onSnapshot(Context context) {
return;
}
public static void onCalibrationEnding(Context context) {
return;
}
public static void onCalibrationEnding(Context context) {
return;
}
/**
* Parses and saves the current 3d settings to the current pipeline.
*/
public static void onPnpModel(Context context) {
return;
}
/** Parses and saves the current 3d settings to the current pipeline. */
public static void onPnpModel(Context context) {
return;
}
public static void onInstallOrUpdate(Context context) {
return;
}
public static void onInstallOrUpdate(Context context) {
return;
}
}