Михаиллл
July 14, 2019, 7:08 p.m.

Работа в QML c камерой

Добрый день.
Могу отображать увртинку с камеры на экране.
Но картинка не поворачивается при повороте телефона. Скажите пожалуйста, как ее поворачивать вместе с телефоном.
Также пытаюсь сделать фото при нажатии на единственную кнопку и отобразить это фото на картинке, но не могу сделать это.
Помогите пожалуйста.
Ниже мой код.
qml

  1. import QtQuick 2.12
  2. import QtMultimedia 5.12
  3.  
  4. Camera1Form {
  5. buttonPhoto.onClicked: //photo
  6. {
  7. imageForPhoto.source= camera
  8. }
  9. }
  10.  

ui.qml

  1. import QtQuick 2.12
  2. import QtQuick.Controls 2.12
  3. import QtMultimedia 5.12
  4.  
  5. Item {
  6. width: 400
  7. height: 700
  8. property alias buttonPhoto: buttonPhoto
  9. property alias imageForPhoto: imageForPhoto
  10. property alias photoPreview: photoPreview
  11. property alias camera: camera
  12.  
  13. Camera {
  14. id: camera
  15.  
  16. imageProcessing.whiteBalanceMode: CameraImageProcessing.WhiteBalanceFlash
  17.  
  18. exposure {
  19. exposureCompensation: -1.0
  20. exposureMode: Camera.ExposurePortrait
  21. }
  22.  
  23. flash.mode: Camera.FlashRedEyeReduction
  24.  
  25. imageCapture {
  26. onImageCaptured: {
  27. photoPreview.source = preview // Show the preview in an Image
  28. }
  29. }
  30. }
  31.  
  32. VideoOutput {
  33. anchors.bottomMargin: 300
  34. source: camera
  35. anchors.fill: parent
  36. focus : visible // to receive focus and capture key events when visible
  37. }
  38.  
  39. Image {
  40. id: photoPreview
  41. }
  42.  
  43. Image {
  44. id: imageForPhoto
  45. x: 21
  46. y: 433
  47. width: 219
  48. height: 215
  49. fillMode: Image.PreserveAspectFit
  50. source: "qrc:/qtquickplugin/images/template_image.png"
  51.  
  52. }
  53.  
  54. Button {
  55. id: buttonPhoto
  56. x: 264
  57. y: 507
  58. text: qsTr("Photo")
  59. }
  60. }
  61.  
1

Do you like it? Share on social networks!

3
Михаиллл
  • July 15, 2019, 7:33 p.m.

Нашел тут код, и в нем сохранение фото выполняет ,похоже, функция

  1. function addPicture(source) {
  2. var image = {
  3. "id": source,
  4. "source": source
  5. };
  6. picturesModel.push(image);
  7. root.picturesModelChanged();
  8. }

не могли бы вы помочь мне используя этот код доделать фуункцию фотографирования
Вот весь код:

  1. import QtQuick 2.11
  2. import QtQuick.Controls 2.4
  3. import QtMultimedia 5.9
  4. import QtQuick.Layouts 1.3
  5. import QtQuick.Controls 1.4 as C1
  6. import QtQuick.Controls.Material 2.2
  7.  
  8. ApplicationWindow {
  9. id: root
  10. visible: true
  11. width: 640
  12. height: 480
  13. title: "Tutorial de Cámara"
  14.  
  15. Material.theme: Material.Dark
  16. Material.accent: Material.Green
  17.  
  18. property bool rounded: roundedSwitch.position === 1.0
  19. property bool adapt: true
  20. property var picturesModel: []
  21. property string cameraState: turnOnSwitch.position === 1.0 ? "CameraEnabled" : "CameraDisabled"
  22.  
  23. SoundEffect {
  24. id: buttonSound
  25. source: "qrc:/button.wav"
  26. }
  27.  
  28. SoundEffect {
  29. id: captureSound
  30. source: "qrc:/cameraappCapture1.wav"
  31. }
  32.  
  33. SoundEffect {
  34. id: beepSound
  35. source: "qrc:/beep.wav"
  36. }
  37.  
  38. function addPicture(source) {
  39. var image = {
  40. "id": source,
  41. "source": source
  42. };
  43. picturesModel.push(image);
  44. root.picturesModelChanged();
  45. }
  46.  
  47. Camera {
  48. id: camera
  49. digitalZoom: zoomSlider.value
  50. imageProcessing.whiteBalanceMode: CameraImageProcessing.WhiteBalanceFlash
  51. exposure.exposureCompensation: -1.0
  52. exposure.exposureMode: Camera.ExposurePortrait
  53. flash.mode: Camera.FlashRedEyeReduction
  54. imageCapture.onImageCaptured: {
  55. addPicture(preview);
  56. }
  57. }
  58.  
  59. C1.SplitView {
  60. anchors.fill: parent
  61. orientation: Qt.Horizontal
  62.  
  63. Item {
  64. id: cameraControls
  65. width: 200
  66. height: parent.height
  67.  
  68. GroupBox {
  69. id: controls
  70.  
  71. label: Label {
  72. text: "CONTROLES"
  73. font.pointSize: 15
  74. font.bold: true
  75. }
  76.  
  77. width: parent.width
  78. height: parent.height / 2
  79.  
  80. Column {
  81. anchors.fill: parent
  82. spacing: 1
  83.  
  84. Switch {
  85. id: turnOnSwitch
  86. text: "ENCENDER"
  87. position: 0.0
  88. onPositionChanged: {
  89. buttonSound.play();
  90. if (position === 1.0) {
  91. camera.start();
  92. } else {
  93. camera.stop();
  94. }
  95. }
  96. }
  97.  
  98. Switch {
  99. id: roundedSwitch
  100. text: "CIRCULAR"
  101. position: 0.0
  102. onPositionChanged: {
  103. buttonSound.play();
  104. }
  105. }
  106.  
  107. Image {
  108. source: "qrc:/save.png"
  109. sourceSize.width: 55
  110. sourceSize.height: 55
  111. fillMode: Image.PreserveAspectCrop
  112. width: 55
  113. height: 55
  114. MouseArea {
  115. anchors.fill: parent
  116. onClicked: {
  117. beepSound.play();
  118. MyImageSaver.writePictures();
  119. }
  120. }
  121. }
  122. }
  123. }
  124. VideoOutput {
  125. anchors.left: parent.left
  126. anchors.right: parent.right
  127. anchors.top: controls.bottom
  128. height: parent.height / 2 - 50
  129. source: camera
  130. focus: visible
  131.  
  132. Rectangle {
  133. id: captureButton1
  134. width: 55
  135. height: 55
  136. radius: 50
  137. color: "red"
  138. border.width: 2
  139. border.color: "lime"
  140. opacity: 0.6
  141. anchors.horizontalCenter: parent.horizontalCenter
  142. anchors.bottom: parent.bottom
  143. MouseArea {
  144. anchors.fill: parent
  145. onPressed: {
  146. captureButton1.color = "lime";
  147. camera.imageCapture.capture();
  148. captureSound.play();
  149. }
  150. onReleased: {
  151. captureButton1.color = "red";
  152. }
  153. }
  154. }
  155.  
  156. Rectangle {
  157. anchors.fill: parent
  158. color: "black"
  159. visible: cameraState === "CameraDisabled"
  160. Image {
  161. source: "qrc:/disabled.png"
  162. sourceSize.width: parent.width / 2
  163. sourceSize.height: parent.height / 2
  164. width: parent.width / 2
  165. height: parent.height / 2
  166. fillMode: Image.PreserveAspectFit
  167. anchors.centerIn: parent
  168. }
  169. }
  170. }
  171. Slider {
  172. id: zoomSlider
  173. orientation: Qt.Horizontal
  174. from: 0
  175. to: camera.maximumDigitalZoom
  176. stepSize: camera.maximumDigitalZoom / 10
  177. value: 1.0
  178. anchors.left: parent.left
  179. anchors.right: parent.right
  180. anchors.bottom: parent.bottom
  181. }
  182. }
  183.  
  184. Item {
  185. id: pictures
  186. height: parent.height
  187. Rectangle {
  188. anchors.fill: parent
  189. color: "gray"
  190. GridView {
  191. id: grid
  192. anchors.fill: parent
  193. cellWidth: parent.width / 5
  194. cellHeight: parent.height / 5
  195. model: picturesModel
  196. delegate: Rectangle {
  197. property bool showPicture: true
  198.  
  199. id: rect
  200. width: grid.cellWidth
  201. height: grid.cellHeight
  202. color: showPicture ? "transparent" : "white"
  203. radius: rounded ? 200 : 0
  204.  
  205. Text {
  206. anchors.centerIn: parent
  207. visible: !rect.showPicture
  208. font.pointSize: 60
  209. text: {
  210. var txt = modelData.id;
  211. txt = txt.substring(txt.indexOf("_") + 1);
  212. return txt;
  213. }
  214. }
  215.  
  216. Image {
  217. id: image
  218. visible: rect.showPicture
  219. anchors.centerIn: parent
  220. source: modelData.source
  221. sourceSize.width: 512
  222. sourceSize.height: 512
  223. width: parent.width * 0.95
  224. height: parent.height * 0.95
  225. fillMode: Image.PreserveAspectCrop
  226.  
  227. layer.enabled: rounded
  228. layer.effect: ShaderEffect {
  229. property real adjustX: adapt ? Math.max(width/height, 1) : 1
  230. property real adjustY: adapt ? Math.max(1/(width/height), 1) : 1
  231. fragmentShader: "
  232. #ifdef GL_ES
  233. precision lowp float;
  234. #endif // GL_ES
  235. varying highp vec2 qt_TexCoord0;
  236. uniform highp float qt_Opacity;
  237. uniform lowp sampler2D source;
  238. uniform lowp float adjustX;
  239. uniform lowp float adjustY;
  240.  
  241. void main(void) {
  242. lowp float x, y;
  243. x = (qt_TexCoord0.x - 0.5) * adjustX;
  244. y = (qt_TexCoord0.y - 0.5) * adjustY;
  245. float delta = adjustX != 1.0 ? fwidth(y) / 2.0 : fwidth(x) / 2.0;
  246. gl_FragColor = texture2D(source, qt_TexCoord0).rgba
  247. * step(x * x + y * y, 0.25)
  248. * smoothstep((x * x + y * y), 0.25 + delta, 0.25)
  249. * qt_Opacity;
  250. }"
  251. }
  252.  
  253. Component.onCompleted: {
  254. image.grabToImage(function(result) {
  255. MyImageSaver.savePicture(modelData.id, result);
  256. });
  257. }
  258. }
  259. MouseArea {
  260. anchors.fill: parent
  261. hoverEnabled: true
  262. onEntered: {
  263. rect.showPicture = false;
  264. }
  265. onExited: {
  266. rect.showPicture = true;
  267. }
  268. }
  269. }
  270. }
  271. }
  272. }
  273. }
  274. }
  275.  
    Михаиллл
    • July 15, 2019, 10:02 p.m.

    Так можно сохранить картинку.
    Осталось узнать как ее сохранять в папку с программой, как зеркалить картинку и как поворачивать камеру вместе с наклоном телефона.
    Может быть вы знаете как можно что-нибудь из этого сделать?

    1. buttonPhoto.onClicked: //photo
    2. {
    3. camera.imageCapture.captureToLocation("C:/Users/New Owner/Pictures/IMG_00000001.jpg")
    4. var imageFile =camera.imageCapture.capturedImagePath
    5. console.log("test: " + imageFile)
    6. }
      Михаиллл
      • July 15, 2019, 10:26 p.m.
      • The answer was marked as a solution.

      Так камера показывает правильно при поворотах телефона.
      Осталось узнать как картинки сохранять в папку с программой и как их потом загружать в картинки.

      1. VideoOutput {
      2. //anchors.bottomMargin: 300
      3. source: camera
      4. anchors.fill: parent
      5. focus : visible // to receive focus and capture key events when visible
      6. autoOrientation: true
      7. }

        Comments

        Only authorized users can post comments.
        Please, Log in or Sign up
        • Last comments
        • AK
          April 1, 2025, 11:41 a.m.
          Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
        • Evgenii Legotckoi
          March 9, 2025, 9:02 p.m.
          К сожалению, я этого подсказать не могу, поскольку у меня нет необходимости в обходе блокировок и т.д. Поэтому я и не задавался решением этой проблемы. Ну выглядит так, что вам действитель…
        • VP
          March 9, 2025, 4:14 p.m.
          Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
        • ИМ
          Nov. 22, 2024, 9:51 p.m.
          Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
        • Evgenii Legotckoi
          Oct. 31, 2024, 11:37 p.m.
          Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup