点阵完成,加入opencv

This commit is contained in:
2026-01-20 19:55:56 +08:00
parent 59564fd312
commit bc9f2824ed
367 changed files with 162001 additions and 52 deletions

View File

@@ -469,8 +469,7 @@ Rectangle {
MouseArea {
anchors.fill: parent
onClicked: {
lowColorDialog.selectedColor = Backend.colorLow
lowColorDialog.open()
lowColorDialog.openWith(Backend.colorLow)
}
}
}
@@ -478,8 +477,7 @@ Rectangle {
text: root.tr("选择")
Layout.fillWidth: true
onClicked: {
lowColorDialog.selectedColor = Backend.colorLow
lowColorDialog.open()
lowColorDialog.openWith(Backend.colorLow)
}
}
}
@@ -503,8 +501,7 @@ Rectangle {
MouseArea {
anchors.fill: parent
onClicked: {
midColorDialog.selectedColor = Backend.colorMid
midColorDialog.open()
midColorDialog.openWith(Backend.colorMid)
}
}
}
@@ -512,8 +509,7 @@ Rectangle {
text: root.tr("选择")
Layout.fillWidth: true
onClicked: {
midColorDialog.selectedColor = Backend.colorMid
midColorDialog.open()
midColorDialog.openWith(Backend.colorMid)
}
}
}
@@ -537,8 +533,7 @@ Rectangle {
MouseArea {
anchors.fill: parent
onClicked: {
highColorDialog.selectedColor = Backend.colorHigh
highColorDialog.open()
highColorDialog.openWith(Backend.colorHigh)
}
}
}
@@ -546,8 +541,7 @@ Rectangle {
text: root.tr("选择")
Layout.fillWidth: true
onClicked: {
highColorDialog.selectedColor = Backend.colorHigh
highColorDialog.open()
highColorDialog.openWith(Backend.colorHigh)
}
}
}
@@ -596,22 +590,22 @@ Rectangle {
}
}
ColorDialog {
ColorPickerDialog {
id: lowColorDialog
title: root.tr("选择低色")
onAccepted: Backend.colorLow = selectedColor
onAccepted: Backend.colorLow = c
}
ColorDialog {
ColorPickerDialog {
id: midColorDialog
title: root.tr("选择中色")
onAccepted: Backend.colorMid = selectedColor
onAccepted: Backend.colorMid = c
}
ColorDialog {
ColorPickerDialog {
id: highColorDialog
title: root.tr("选择高色")
onAccepted: Backend.colorHigh = selectedColor
onAccepted: Backend.colorHigh = c
}
SaveAsExportDialog {