- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有以下问题:一切正常,但当我到达 calibrateCamera 部分时,出现以下错误:
OpenCV Error: Assertion failed (ni > 0 && ni == ni1) in unknown function, file . .....\src\opencv\modules\calib3d\src\calibration.cpp, line 3197
我是新来的,也许我的代码不够清晰,但请友好。非常感谢您。
我的代码是:(我删除了 include 和 pragma 部分,因为这里的字母真的很大)
int _tmain()
{
printf("Everything loaded. Press Enter to continue.\n\a");
getch();
system("cls"); //bildschirm clearen
int numBoards = 0;
int numCornersHor;
int numCornersVer;
char stCurPath[200];
int numFiles = 0;
char stRemFileNum[200];
int curNum;
vector<string> file_names;
string s;
bool pathok = false;
#pragma region ask user for path to load images and list them
// ask user for path to load images and list them
while(pathok == false)
{
fflush(stdin);
printf("Enter path to the folder where the pictures are:\n");
scanf("%199[^\n]s", stCurPath); //achtung wegen bufferoverflow - nicht mehr als 199 zeichen + EOF (0) einlesen.
//[^\n] wegen Leerzeichen. scanf liest bis Enter.
system("cls");
DIR *dir;
struct dirent *ent;
dir = opendir (stCurPath);
if (dir != NULL) {
/* print all the files and directories within directory */
printf("Your chosen path:\n%s\n\nFiletree of this path:\n", stCurPath);
while ((ent = readdir (dir)) != NULL)
{
numFiles++; //Anzahl der Files
printf ("%d)\t%s\n",numFiles, ent->d_name);
s = ent->d_name;
file_names.push_back(s);
}
closedir (dir);
fflush( stdout );
printf ("\nNumber of found files: %d\n", numFiles);
pathok = true;
}
else
{
/* could not open directory */
printf ("Could not open directory. Make sure path is ok!\n\n");
pathok = false;
/*perror ("");
return EXIT_FAILURE*/;
}
}//while(pathok == false)
/*****************************end ask user for path to load images and list them****************************************/
#pragma endregion
#pragma region ask user to exclude some files
/*****************************************ask user to exclude some files*************************/
printf ("\nEnter the number of the files you dont want to load (number only!).\nSeperate single files with comma.\nEnter 0 if you don't want to exclude files.\nEnter x to exclude all non bmp files.\n\nNumbers:\n");
scanf("%199s", stRemFileNum); //achtung wegen bufferoverflow - nicht mehr als 199 zeichen + EOF (0) einlesen
vector<string>::iterator it;
if(strcmp(stRemFileNum,"x") == 0)
{
curNum=1;
numFiles = 0;
string extstr;
const char * extc;
file_names.erase(remove_if(file_names.begin(),
file_names.end(),
isBmpExtension), file_names.end());
system("cls"); //bildschirm clearen
printf("New Filetree of this path:\n\n");
it = file_names.begin();
for(it; it != file_names.end(); ++it)
{
numFiles++;
printf ("%d)\t%s\n",numFiles, (*it).c_str());
}
printf ("\nNumber of found files: %d\n", numFiles);
}//if(strcmp(stRemFileNum,"x") == 0)
//end user entered x
//start user entered 0
if(strcmp(stRemFileNum,"0") != 0 && strcmp(stRemFileNum,"x") != 0)
{
//fehler
numFiles = 0;
vector<string> numbersVector;
string strNumbers = stRemFileNum;
Tokenize(strNumbers, numbersVector, ",");
sort(numbersVector.begin(), numbersVector.end(), strCompDesc);
for(it = numbersVector.begin(); it != numbersVector.end(); ++it)
{
curNum = atoi((*it).c_str());
file_names.erase(file_names.begin() + (curNum - 1));
}
system("cls"); //bildschirm clearen
printf("New Filetree of this path:\n\n");
//fehler ende
for(vector<string>::iterator it = file_names.begin(); it != file_names.end(); ++it)
{
numFiles++;
printf ("%d)\t%s\n",numFiles, (*it).c_str());
}
printf ("\nNumber of found files: %d\n", numFiles);
}
//user entered 0
else if(strcmp(stRemFileNum,"0") == 0)
{
printf ("\nNo files excluded.\n");
}
/*****************end ask user to exclude some files *******************************************/
#pragma endregion
fflush(stdin);
printf("\nEnter number of corners along width: ");
scanf("%d", &numCornersHor);
fflush(stdin);
printf("Enter number of corners along height: ");
scanf("%d", &numCornersVer);
int numSquares = numCornersHor * numCornersVer;
Size board_sz = Size(numCornersHor, numCornersVer);
vector<vector<Point3f>> object_points;
vector<vector<Point2f>> image_points;
vector<Point2f> corners;
vector<Point3f> obj;
int pictures_done=0;
Mat image;
Mat gray_image;
//Bilder zum persönlichen auswerten anzeigen +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
for(vector<string>::iterator it = file_names.begin(); it != file_names.end(); ++it)
{
printf("\nLoading Picture..\n");
image = imread(string(stCurPath) + "\\" + (*it).c_str()); //als farbe lesen; doppelter backslash o. normaler
//resize(image, image, Size(0,0), 0.5, 0.5, INTER_AREA);
cvtColor(image,gray_image,CV_RGB2GRAY);
for(int j=0;j<numSquares;j++)
{
obj.push_back(Point3f(j/numCornersHor, j%numCornersHor, 0.0f));
}//for(int j=0;j<numSquares;j++)
bool found = findChessboardCorners(image, board_sz, corners, CV_CALIB_CB_ADAPTIVE_THRESH | CV_CALIB_CB_FILTER_QUADS);
if(found)
{
cornerSubPix(gray_image, corners, Size(11, 11), Size(-1, -1), TermCriteria(CV_TERMCRIT_EPS | CV_TERMCRIT_ITER, 30, 0.1));
drawChessboardCorners(gray_image, board_sz, corners, found);
}
cvNamedWindow("win1", 1);
imshow("win1", gray_image);
waitKey(30);
cvMoveWindow("win1",0,0);
waitKey(30);
printf("\nPicture loaded.\nPress a to load original, s to store snap and show next picture,");
printf("\nd to drop snap and show next picture, and f to close the programm\n");
char key;
bool bOriginalDisplayed = false;
while(1)
{
if (cin.rdbuf()->in_avail())
{
key = _getch();
}
if('a' == key && found!=0)
{
if (!bOriginalDisplayed)
{
printf("\nLoading original..\n");
cvNamedWindow("win2", 1);
cvMoveWindow("win2",0,0);
imshow("win2", image); //oder imshow cvMoveWindow("Smile", 100, 100);
bOriginalDisplayed = true;
waitKey(50);
printf("\nOriginal loaded.\nPess a again to close original before you continue.\n");
}
else
{
cvDestroyWindow("win2");
printf("\nOriginal closed.\n");
bOriginalDisplayed = false;
}
}
if('s'==key)
{
image_points.push_back(corners);
object_points.push_back(obj);
printf("\nSnap stored!\n");
pictures_done++;
found = false;
break;
}
if('d' == key)
{
pictures_done++;
break;
found = false;
}
if('f' == key)
{
return 0;
}
Sleep(50);
} //while (1)
} //for(vector<string>::iterator it = file_names.begin(); it != file_names.end(); ++it)
cvDestroyWindow("win1");
waitKey(50);
Mat intrinsic = Mat(3, 3, CV_32FC1);
Mat distCoeffs;
vector<Mat> rvecs;
vector<Mat> tvecs;
intrinsic.ptr<float>(0)[0] = 1;
intrinsic.ptr<float>(1)[1] = 1;
calibrateCamera(object_points, image_points, image.size(), intrinsic, distCoeffs, rvecs, tvecs);
Mat imageUndistorted;
for(vector<string>::iterator it = file_names.begin(); it != file_names.end(); ++it)
{
printf("\nLoading undistorted Picture..\n");
image = imread(string(stCurPath) + "\\" + (*it).c_str()); //als farbe lesen; doppelter backslash o. normaler
//resize(image, image, Size(0,0), 0.5, 0.5, INTER_AREA);
cvtColor(image,gray_image,CV_RGB2GRAY);
cvNamedWindow("win1", 1);
cvNamedWindow("win2", 1);
cvMoveWindow("win1",0,0);
cvMoveWindow("win2",0,0);
undistort(image, imageUndistorted, intrinsic, distCoeffs);
imshow("win1", image);
waitKey(0);
imshow("win2", imageUndistorted);
waitKey(30);
printf("\nPicture loaded. Press s for the next picture or f to exit.");
char key;
bool bOriginalDisplayed = false;
while(1)
{
if (cin.rdbuf()->in_avail())
{
key = _getch();
}
if('s'==key)
{
break;
}
if('f' == key)
{
return 0;
}
Sleep(50);
} //while (1)
} //for(vector<string>::iterator it = file_names.begin(); it != file_names.end(); ++it)
return 0;
}
最佳答案
如果发现问题。我是一个好人,我来这里是为了为将来遇到同样问题的人发布答案。
解决方案:将 obj.clear() 添加到 for 函数中,这样当您向后推时 obj 始终保持相同大小。像这样:
//Bilder zum persönlichen auswerten anzeigen +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
for(vector<string>::iterator it = file_names.begin(); it != file_names.end(); ++it)
{
printf("\nLoading Picture..\n");
image = imread(string(stCurPath) + "\\" + (*it).c_str()); //als farbe lesen; doppelter backslash o. normaler
//resize(image, image, Size(0,0), 0.5, 0.5, INTER_AREA);
cvtColor(image,gray_image,CV_RGB2GRAY);
obj.clear();
for(int j=0;j<numSquares;j++)
{
obj.push_back(Point3f(j/numCornersHor, j%numCornersHor, 0.0f));
}//for(int j=0;j<numSquares;j++)
bool found = findChessboardCorners(image, board_sz, corners, CV_CALIB_CB_ADAPTIVE_THRESH | CV_CALIB_CB_FILTER_QUADS);
if(found)
祝您编程愉快。问候,Escore。
关于OpenCV 错误 : Assertion failed (ni > 0 && ni == ni1),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12723656/
测试返回类型为 bool 的方法时。 你应该: expected = true; Assert.AreEqual(expected, actual); 或 Assert.IsTrue(actual);
我最近在编写新的 NUnit 测试时尝试使用 Assert.Equals() 方法。执行此方法时会抛出一个 AssertionException ,说明Assert.Equals 不应该用于断言。 乍
在 Chai 断言库中,当我们已经有了“assert.deepEqual()”时,“assert.equal()”有什么用"和 "assert.strictEqual()"用于严格和深度相等断言?还提
有没有办法断言 puppet 中的变量(或更具体地说,事实)具有特定值,如果没有则中止安装? 对于背景,情况如下: 在大多数情况下,我可以引用主机名,但有时我需要使用 IP 地址。例如,我们的日志收集
喜欢什么: Assert.That(obj.Foo, Is.EqualTo(true)) 或 Assert.True(obj.Foo) 对我来说,这两个断言是等价的,那么应该首选哪个? 最佳答案 在这
如何在 xUnit 中找到多个断言或软断言?我发现 Nunit 有以下能力,试图在 xUnit 中找到类似的选项。 Assert.Multiple(() => { Assert.AreEqua
有什么区别: Assert.Equals和 Assert.AreEqual Assert.NotNull和 Assert.IsNotNull ... ? 最佳答案 Assert.Equals 是一个对
我想写一个像这样工作的断言函数: //the following expression outputs "assertion failed" to std::err and then terminat
有人可以指出差异吗? 以上确实是我的问题,但是如果您也可以与他们分享您的经验以及您为什么使用其中一个。 最佳答案 它们只是两个不同的库,因此只需查看功能,尤其是报告功能,然后选择即可。 因为我是 的作
我无法找到断言 1 失败但断言 2 通过的原因: var a = Test.test1; var b = Test.test1; a.Should().BeSameAs(b); //1 Assert.
我正在为每个步骤使用 NUnit 断言运行自动化 BDD 步骤,即 Then And 我的 UI 测试。 NUnit 断言仅限于每个方法。这意味着如果方法中的断言失败,则不会运行其他步骤。 我正在考虑
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我只是在寻找一些示例,说明何时适合使用 Assert.Catch 或 Assert.Throws 断言单元测试中抛出的任何异常。我知道我也可以使用 ExpectedException,但我特别想知道“
Assert.AreEqual 和 Assert.AreSame 有什么区别? 最佳答案 这意味着 AreSame() 检查它们是否是完全相同的对象 - 如果引用指示内存中的相同对象。 AreEqua
在C#中,有什么区别 Assert.AreNotEqual 和 Assert.AreNotSame 最佳答案 这里给出的几乎所有答案都是正确的,但可能值得举个例子: public static str
我曾经在 NUnit 中使用过它们,它们非常有用。知道如何做类似的事情吗? 编辑,代码示例: bool condition = false;//would be nice not to have th
关于Arrange-Act-Assert的经典测试模式,我经常发现自己在 Act 之前添加了反断言。这样我就知道传递的断言确实是作为操作的结果传递的。 我认为它类似于红绿重构中的红色,只有当我在测试过
每当我创建断言时,Eclipse 都会建议我从这两个包之一导入它。 例如,当我尝试使用 assertArrayEquals() 比较数组时Eclipse 建议从其中之一导入它 org.junit.As
每当我创建断言时,Eclipse 都会建议我从这两个包之一导入它。 例如,当我尝试使用 assertArrayEquals() 比较数组时Eclipse 建议从其中之一导入它 org.junit.As
我是一名优秀的程序员,十分优秀!