[Doc] Update Android SDK usage docs (#605)

* [Backend] fix lite backend save model error

* [Backend] fixed typos

* [FlyCV] optimize the integration of FlyCV

* [cmake] close some tests options

* [cmake] close some test option

* [FlyCV] remove un-need warnings

* [FlyCV] remove un-need GetMat method

* [FlyCV] optimize FlyCV codes

* [cmake] remove un-need cmake function in examples/CMakelists

* [cmake] support gflags for Android

* [Android] Run button shutter in sub Ui Thread

* [Android] Update CameraSurfaceView

* [Android] Update Android SDK usage docs
This commit is contained in:
DefTruth
2022-11-16 11:11:02 +08:00
committed by GitHub
parent 2f73857b2b
commit fd5328239d
4 changed files with 67 additions and 13 deletions

View File

@@ -30,10 +30,10 @@ void RenderingDetection(JNIEnv *env, const cv::Mat &c_bgr,
if (AssetsLoader::IsDetectionLabelsLoaded()) {
c_vis_im = vision::VisDetection(c_bgr, c_result,
AssetsLoader::GetDetectionLabels(),
score_threshold, 2, 1.0f);
score_threshold, 2, 0.5f);
} else {
c_vis_im =
vision::VisDetection(c_bgr, c_result, score_threshold, 2, 1.0f);
vision::VisDetection(c_bgr, c_result, score_threshold, 2, 0.5f);
}
LOGD("Visualize from native costs %f ms", GetElapsedTime(t));