如何在 Flutter 中獲得手動相機對焦 (How to get manual camera focus in Flutter)


問題描述

如何在 Flutter 中獲得手動相機對焦 (How to get manual camera focus in Flutter)

目前我正在使用這個庫:https://pub.dev/packages/camera並且它已將 setFocusMode 設置為自動或鎖定,但我需要一種能夠獲得相機手動對焦模式的方法,用戶可以在其中點擊相機供稿並相應地調整焦點。如何在我的應用中實現這一點?


參考解法

方法 1:

I found this plugin https://pub.dev/documentation/manual_camera/latest/. Does this work? you could use focus distance. If you could get the distance of the object you could set it that way. It's almost like shooting out a ray in game programming. I don't know if this is possible to do but maybe using the size of the objects in the image you could get the distance. someone else has probably already figured this out.

(by Apoorv pandeyCody)

參考文件

  1. How to get manual camera focus in Flutter (CC BY‑SA 2.5/3.0/4.0)

#Flutter #flutter-layout






相關問題

Flutter:構建 APK 時如何傳遞 Gradle 參數? (Flutter: how do I pass Gradle params when building an APK?)

自行更新的 Flutter 模型 (Flutter model that updates itself)

在 Flutter for Web 應用程序中嵌入網頁作為 Widget(類似於 iframe) (Embed a web page as a Widget inside Flutter for Web application (similar to iframe))

顫振無線電值在步進器中沒有改變 (Flutter Radio Value not Changing in Stepper)

Flutter - 使用收到的每條消息通知的實時消息應用程序的最佳方式? (Flutter - Best way to do real-time messaging app with notifications per received message?)

Flutter 在執行異步等待任務時顯示一個小部件 (Flutter show a widget while an async await task is being executed)

嘗試在 Flutter 中訪問 Hive 數據庫時,“聯繫人”框已打開且類型為 Box<Contact> (The box "contacts" is already open and of type Box<Contact> when trying to access Hive database in flutter)

如何在 Flutter MultiImagePicker 中指定照片的質量? (How can i specify the quality of the photo in Flutter MultiImagePicker?)

Swift pod 還不能集成為靜態庫 (Swift pods cannot yet be integrated as static libraries)

為什麼我可以通過 android 模擬器運行一個簡單的計數器應用程序,但不能通過 ios 模擬器運行? (Why can I run a simple counter application through an android simulator but not through an ios simulator?)

DropdownButtonFormField 不顯示選擇顫振的值 (DropdownButtonFormField dosn't show the value that selected flutter)

如何在 Flutter 中獲得手動相機對焦 (How to get manual camera focus in Flutter)







留言討論