- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我试图用java在opencv中做一个对象跟踪程序,当我尝试将原始图片与阈值图片结合起来时遇到问题,我使用bitwise_and我不断收到此错误:
Exception in thread "main" CvException [org.opencv.core.CvException: cv::Exception: ..\..\..\..\opencv\modules\core\src\arithm.cpp:1021: error: (-209) The operation is neither 'array op array' (where arrays have the same size and type), nor 'array op scalar', nor 'scalar op array' in function cv::binary_op
]
at org.opencv.core.Core.bitwise_and_1(Native Method)
at org.opencv.core.Core.bitwise_and(Core.java:1149)
at opencv.Panel.main(Panel.java:151)
我不知道为什么,因为我认为矩阵具有相同的大小,事实上,线程矩阵是基于原始矩阵创建的。
在这里我发布我的代码:
package opencv;
// Import the basic graphics classes.
// The problem here is that we read the image with OpenCV into a Mat object.
// But OpenCV for java doesn't have the method "imshow", so, we got to use
// java for that (drawImage) that uses Image or BufferedImage.
// So, how to go from one the other... Here is the way...
import java.awt.*;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.List;
import javax.swing.*;
import org.opencv.core.Core;
import org.opencv.core.CvType;
import org.opencv.core.Mat;
import org.opencv.core.Scalar;
import org.opencv.core.Size;
import org.opencv.highgui.VideoCapture;
import org.opencv.imgproc.Imgproc;
public class Panel extends JPanel{
private static final long serialVersionUID = 1L;
private BufferedImage image;
// Create a constructor method
public Panel(){
super();
}
private BufferedImage getimage(){
return image;
}
private void setimage(BufferedImage newimage){
image=newimage;
return;
}
/**
* Converts/writes a Mat into a BufferedImage.
*
* @param matrix Mat of type CV_8UC3 or CV_8UC1
* @return BufferedImage of type TYPE_3BYTE_BGR or TYPE_BYTE_GRAY
*/
public static BufferedImage matToBufferedImage(Mat matrix) {
int cols = matrix.cols();
int rows = matrix.rows();
int elemSize = (int)matrix.elemSize();
byte[] data = new byte[cols * rows * elemSize];
int type;
matrix.get(0, 0, data);
switch (matrix.channels()) {
case 1:
type = BufferedImage.TYPE_BYTE_GRAY;
break;
case 3:
type = BufferedImage.TYPE_3BYTE_BGR;
// bgr to rgb
byte b;
for(int i=0; i<data.length; i=i+3) {
b = data[i];
data[i] = data[i+2];
data[i+2] = b;
}
break;
default:
return null;
}
BufferedImage image2 = new BufferedImage(cols, rows, type);
image2.getRaster().setDataElements(0, 0, cols, rows, data);
return image2;
}
protected void paintComponent(Graphics g){
super.paintComponent(g);
//BufferedImage temp=new BufferedImage(640, 480, BufferedImage.TYPE_3BYTE_BGR);
BufferedImage temp=getimage();
//Graphics2D g2 = (Graphics2D)g;
if( temp != null)
g.drawImage(temp,10,10,temp.getWidth(),temp.getHeight(), this);
}
public static void main(String arg[]) throws InterruptedException{
// Load the native library.
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
//Frame Camara
JFrame frame = new JFrame("Camera");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400,400);
Panel panel1 = new Panel();
frame.setContentPane(panel1);
frame.setVisible(true);
//Frame HVS
JFrame frame2 = new JFrame("HSV");
frame2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame2.setSize(400,400);
Panel panel2 = new Panel();
frame2.setContentPane(panel2);
frame2.setVisible(true);
//Frame Figure
JFrame frame3 = new JFrame("Figure");
frame3.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame3.setSize(400,400);
Panel panel3 = new Panel();
frame3.setContentPane(panel3);
frame3.setVisible(true);
//Definicion de Matrices
Mat webcam_image=new Mat();
Mat hsv_image=new Mat();
Mat thresholded=new Mat();
Mat figure=new Mat();
//hvs colour range
Scalar hsv_min = new Scalar(30, 100,100, 0);
Scalar hsv_max = new Scalar(70, 255,255, 0);
BufferedImage temp;
VideoCapture capture =new VideoCapture(0);
Thread.sleep(1000);
if( capture.isOpened())
{
while( true )
{
capture.read(webcam_image);
if( !webcam_image.empty() )
{
hsv_image=bgr2hsv(webcam_image);
Core.inRange(hsv_image, hsv_min, hsv_max, thresholded);
//TEST CODEE
//System.out.println(webcam_image.size());
//System.out.println(thresholded.size());
Core.bitwise_and(webcam_image, thresholded, figure);
//////////////////////////////////////
//Set Image
//Camera
frame.setSize(webcam_image.width()+40,webcam_image.height()+60);
temp=matToBufferedImage(webcam_image);
panel1.setimage(temp);
panel1.repaint();
//HSV
frame2.setSize(webcam_image.width()+40,webcam_image.height()+60);
temp=matToBufferedImage(thresholded);
panel2.setimage(temp);
panel2.repaint();
//Figure
frame3.setSize(webcam_image.width()+40,webcam_image.height()+60);
temp=matToBufferedImage(figure);
panel3.setimage(temp);
panel3.repaint();
}
else
{
System.out.println(" --(!) No captured frame -- Break!");
break;
}
}
}
return;
}
private static void trackRobot() throws AWTException{
}
private static Mat bgr2hsv(Mat bgr){
Mat hsv = new Mat();
Imgproc.cvtColor(bgr, hsv, Imgproc.COLOR_RGB2HSV);
return hsv;
}
}
对不起我的英语
最佳答案
Mat thresholded
是 CvType.CV_8UC1
正确的语法应该是
Core.bitwise_and(webcam_image, webcam_image, figure, thresholded);
或者您可以尝试将阈值转换为 CvType.CV_8UC3
Imgproc.cvtColor(thresholded, thresholded, Imgproc.COLOR_GRAY2BGR, 3);
然后应用你的语法
Core.bitwise_and(webcam_image, thresholded, figure);
关于java - opencv java中的bitwise_and大小错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30448812/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!