OpenCVで物体検出(たとえば顔検出)をするときに使用する detectMultiScale の引数の意味と使いかた。
続きを読む
「OpenCV」タグアーカイブ
OpenCV開発環境構築メモ
OpenCVを組み込んだiOSアプリが“Missing Info.plist key”を理由にAppStore審査不合格
不合格理由
アプリがカメラ機能を使用するにもかかわらず xxx-Info.plist にカメラ機能を使用する理由の記載(NSCameraUsageDescription)がない。
カメラ機能を明示的には使用していないケースであっても、OpenCV(opencv2.framework)を組み込むとカメラ機能を呼び出す(ことができる)バイナリ・オブジェクトがアプリに含まれてしまう。
XcodeでOpenCVのコンパイルエラー
エラー内容
1 |
enum { NO, GAIN, GAIN_BLOCKS }; |
ヘッダーファイル(*.hpp)において "Expected Identifier" が発生する。
直前のソースコードで以下の警告(Warning)が発生している。
1 2 3 |
#if defined(NO) # warning Detected Apple 'NO' macro definition, it can cause build conflicts. Please, include this header before any Apple headers. #endif |
意訳
Apple (Xcode) が提供するヘッダーファイルにおいて "NO" が定義される前に、OpenCVのヘッダーファイルを先に読み込んで "NO;" を定義しなければならない。
続きを読む
iOSでOpenCVを使う
2017年6月現在
OpenCV 安定板最新: 3.2.0 – Dec 23, 2016 released
1. ソースコードからframeworkをビルド
2017年6月現在 Xcode 8.2.1, MacOS 10.11 (El Capitan) にてビルド成功
“Missing Info.plist key”を理由にAppStore審査不合格
Dear developer,
We have discovered one or more issues with your recent delivery for “xxxxx”. To process your delivery, the following issues must be corrected:
Missing Info.plist key – This app attempts to access privacy-sensitive data without a usage description. The app’s Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data.
Once these issues have been corrected, you can then redeliver the corrected binary.
Regards,
The App Store team
不合格の直接的理由
アプリがカメラ機能を使用するにもかかわらず xxx-Info.plist にカメラ機能を使用する理由の記載(NSCameraUsageDescription)がない。