なぜかOpenCVのカメラでの映像がすべて青を帯びています。
人だと青鬼みたいな感じで移り、特徴点の識別率も低いです。
どうすれば直るでしょうか?
例えば色空間の設定など、検索する際のキーワードなどももらえると嬉しいです。
よろしくお願いいたします。
public class MainActivity extends AppCompatActivity implements CameraBridgeViewBase.CvCameraViewListener2 {
カメラの表示処理
private CameraBridgeViewBase m_cameraView;
m_cameraView = findViewById(R.id.camera_view);
m_cameraView.setCvCameraViewListener(MainActivity.this);
m_cameraView.enableView();//カメラをアクティブに
カメラのレイアウト
<org.opencv.android.JavaCamera2View
android:id="@+id/camera_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginStart="0dp"
android:layout_marginTop="0dp"
android:layout_marginEnd="0dp"
android:layout_marginBottom="0dp"
android:visibility="visible"
app:camera_id="front"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:show_fps="true" />
OpenCV:4.1.0
AndroidStudio:3.3.2
Windows 10 64-bit
Java
Android
回答1件
あなたの回答
tips
プレビュー