-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mouse tracking and display color information
Signed-off-by: xiaoming <[email protected]>
- Loading branch information
1 parent
56e52c4
commit 71d745d
Showing
14 changed files
with
159 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ on: | |
- 'README_zh_CN.md' | ||
- 'DEVELOPNOTE.md' | ||
- '.readthedocs.yaml' | ||
tags: | ||
- V** | ||
pull_request: | ||
branches: [ main ] | ||
paths-ignore: | ||
|
@@ -49,8 +51,7 @@ jobs: | |
- name: Build all | ||
run: | | ||
git fetch --tags --force | ||
git describe --always --long --dirty --abbrev=10 --tags | awk '{print "\""$0"\""}' > git_tag.inc | ||
sed -i'.original' -e 's/git_tag.inc/git_tag.ci.inc/g' YUVviewer.pro | ||
sed -i'.original' -e 's/--long --dirty/--long/g' ./tools/generate_info.sh | ||
sed -i'.original' -e 's/QT_DIR=\/opt\/Qt6.2.0\/6.2.0\/gcc_64/QT_DIR=$(cd "$(dirname "$0")";pwd)\/..\/Qt\/6.2.0\/macos/g' build_dmg.sh | ||
sed -i'.original' -e 's/\/home\/xiaoming\/Desktop\/opencv/\/usr\/local/g' build_dmg.sh | ||
sed -i'.original' -e 's/\/home\/xiaoming\/Desktop\/opencv/\/usr\/local/g' partform_unix.pri | ||
|
@@ -67,3 +68,51 @@ jobs: | |
run: | | ||
sudo hdiutil attach ./build_release/out/YUVviewer.dmg | ||
/Volumes/YUVviewer/YUVviewer.app/Contents/MacOS/YUVviewer --version | ||
macos_arm64: | ||
runs-on: macos-14 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Qt | ||
uses: jurplel/[email protected] | ||
with: | ||
version: '6.2.0' | ||
|
||
- name: Install prerequisites | ||
shell: bash -l {0} | ||
run: | | ||
ruby - e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2 > /dev/null | ||
brew reinstall --build-from-source cmake | ||
ln -s /usr/local/Cellar/cmake/3.27.1 /usr/local/Cellar/cmake/3.26.4 | ||
brew install create-dmg | ||
ruby - e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2 > /dev/null | ||
brew install --build-from-source cmake | ||
git clone https://github.com/opencv/opencv.git --branch 4.0.0 --depth 1 | ||
cmake -S opencv -B opencv/build -D ENABLE_PRECOMPILED_HEADERS=OFF -D WITH_MSMF=OFF -D BUILD_PERF_TESTS=OFF -D BUILD_TESTS=OFF -D BUILD_WITH_DEBUG_INFO=OFF -D BUILD_DOCS=OFF -D WITH_JPEG=OFF -D WITH_FFMPEG=OFF -D CMAKE_BUILD_TYPE=RELEASE | ||
cd ./opencv/build | ||
make | ||
sudo make install | ||
- name: Build all | ||
run: | | ||
git fetch --tags --force | ||
sed -i'.original' -e 's/--long --dirty/--long/g' ./tools/generate_info.sh | ||
sed -i'.original' -e 's/QT_DIR=\/opt\/Qt6.2.0\/6.2.0\/gcc_64/QT_DIR=$(cd "$(dirname "$0")";pwd)\/..\/Qt\/6.2.0\/macos/g' build_dmg.sh | ||
sed -i'.original' -e 's/\/home\/xiaoming\/Desktop\/opencv/\/usr\/local/g' build_dmg.sh | ||
sed -i'.original' -e 's/\/home\/xiaoming\/Desktop\/opencv/\/usr\/local/g' partform_unix.pri | ||
./build_dmg.sh | ||
- name: Upload build asserts | ||
uses: actions/[email protected] | ||
with: | ||
name: YUVviewer_macos | ||
path: | | ||
./build_release/out/YUVviewer.dmg | ||
- name: Run tests | ||
run: | | ||
sudo hdiutil attach ./build_release/out/YUVviewer.dmg | ||
/Volumes/YUVviewer/YUVviewer.app/Contents/MacOS/YUVviewer --version | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Architecture: amd64 | |
Section: utils | ||
Depends: | ||
Recommends: | ||
Source: YUVviewer | ||
Source: yuvviewer | ||
Installed-Size: #SIZE# | ||
Priority: extra | ||
Maintainer: QQxiaoming <[email protected]> zhiliao007 <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
$git_info = $(git describe --always --long --dirty --abbrev=10 --tags) | ||
$git_short_hash = $(git rev-parse --short HEAD) | ||
$git_hash = $(git rev-parse HEAD) | ||
$date_info = $([String]::Format("{0:yyyy-MM-ddTHH:mm:ss.fffZ}", $(Get-Date).ToUniversalTime())) | ||
|
||
Write-Output "#ifndef __BUILD_INFO_H__" | ||
Write-Output "#define __BUILD_INFO_H__" | ||
Write-Output "" | ||
Write-Output "#define BUILD_INFO ""$git_info""" | ||
Write-Output "#define BUILD_INFO_LEN $($git_info.Length)" | ||
Write-Output "#define BUILD_HASH ""$git_hash""" | ||
Write-Output "#define BUILD_HASH_LEN $($git_hash.Length)" | ||
Write-Output "#define BUILD_SHORT_HASH ""$git_short_hash""" | ||
Write-Output "#define BUILD_SHORT_HASH_LEN $($git_short_hash.Length)" | ||
Write-Output "#define BUILD_DATE ""$date_info""" | ||
Write-Output "#define BUILD_DATE_LEN $($date_info.Length)" | ||
Write-Output "" | ||
Write-Output "#endif // __BUILD_INFO_H__" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
UNAMEOUT="$(uname -s)" | ||
case "${UNAMEOUT}" in | ||
Linux*) | ||
date_info=$(date +"%Y-%m-%dT%H:%M:%S.%3NZ") | ||
;; | ||
Darwin*) | ||
date_info=$(gdate +"%Y-%m-%dT%H:%M:%S.%3NZ") | ||
;; | ||
esac | ||
|
||
git_info=$(git describe --always --long --dirty --abbrev=10 --tags) | ||
git_short_hash=$(git rev-parse --short HEAD) | ||
git_hash=$(git rev-parse HEAD) | ||
|
||
echo "#ifndef __BUILD_INFO_H__" | ||
echo "#define __BUILD_INFO_H__" | ||
echo | ||
echo "#define BUILD_INFO \"${git_info}\"" | ||
echo "#define BUILD_INFO_LEN ${#git_info}" | ||
echo "#define BUILD_HASH \"${git_hash}\"" | ||
echo "#define BUILD_HASH_LEN ${#git_hash}" | ||
echo "#define BUILD_SHORT_HASH \"${git_short_hash}\"" | ||
echo "#define BUILD_SHORT_HASH_LEN ${#git_short_hash}" | ||
echo "#define BUILD_DATE \"${date_info}\"" | ||
echo "#define BUILD_DATE_LEN ${#date_info}" | ||
echo | ||
echo "#endif /* __BUILD_INFO_H__ */" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.5.6 | ||
0.5.7 |