当前位置:网站首页>Gocv image cutting and display
Gocv image cutting and display
2022-07-02 08:50:00 【Tutu is a cat】
gocv Realize picture clipping
New window
window := gocv.NewWindow("Hello")
Read the picture
read := gocv.IMRead("image/front.jpg", gocv.IMReadColor)
Type conversion
frontImg, _ := read.ToImage()
Color type
rgbImg := frontImg.(*image.RGBA)
Picture cutting :Rect Function (950,100) Top left coordinates , Bottom left coordinates (1300,700) It can be cut into rectangle
subImg := rgbImg.SubImage(image.Rect(950, 100, 1300, 700)).(*image.RGBA)
Store image
out, _ := os.Create("image/front_face.jpg")
png.Encode(out, subImg)
Read the picture
result := gocv.IMRead("image/front_face.jpg",gocv.IMReadColor)
Set the window size according to the above picture size
window.ResizeWindow(1300-950,700-100)
Picture display to window
window.IMShow(result)
window.WaitKey(0)
边栏推荐
- OpenShift 容器平台社区版 OKD 4.10.0部署
- Minecraft插件服开服
- OpenFeign 簡單使用
- Data asset management function
- Realize bidirectional linked list (with puppet node)
- Honeypot attack and defense drill landing application scheme
- Benefits of ufcs of D
- OpenFeign 简单使用
- sqli-labs第8关(布尔盲注)
- Googlenet network explanation and model building
猜你喜欢
Linux二进制安装Oracle Database 19c
HackTheBox-Gunship
Driving test Baodian and its spokesperson Huang Bo appeared together to call for safe and civilized travel
ICMP Protocol
Minecraft plug-in service opening
ARP及ARP欺骗
IP protocol and IP address
Zipkin is easy to use
Classes and objects (instantiation of classes and classes, this, static keyword, encapsulation)
Openshift container platform community okd 4.10.0 deployment
随机推荐
1、 QT's core class QObject
kubernetes部署loki日志系统
选择排序和插入排序
Tcp/ip - transport layer
Makefile基本原理
Select sort and insert sort
Minecraft空岛服开服
Solution of Xiaomi TV's inability to access computer shared files
k8s入门:Helm 构建 MySQL
Programmer training, crazy job hunting, overtime ridiculed by colleagues deserve it
Linux二进制安装Oracle Database 19c
gocv opencv exit status 3221225785
Minecraft plug-in service opening
C# 百度地图,高德地图,Google地图(GPS) 经纬度转换
Sentinel 简单使用
History of Web Technology
Honeypot attack and defense drill landing application scheme
commands out of sync. did you run multiple statements at once
Openshift container platform community okd 4.10.0 deployment
C# 高德地图 根据经纬度获取地址