EmguCv configurations for combining SCAN images
up vote
0
down vote
favorite
I have a set of images that I captured when I was changing the scroll bar (both Vertical and Horizontal) positions of an application (chrome) on my desktop. I want to stitch all these images to get a full view of the webpage. For example : https://hub.mangoapps.com/sf/MTUzMjMwXzE2NDYxMTA
I am using EmguCv for this. Below is my code, but I am getting blurry and blackish image by this and it fails terribly when the webpage has some popup or an ad that is at a constant position even though when I am scrolling the page (example : https://hub.mangoapps.com/sf/MTUzNjczXzE2NDkwNzM).
//mode = SCAN
using (Stitcher stitcher = new Stitcher(mode, true))
using (AKAZEFeaturesFinder finder = new AKAZEFeaturesFinder())
{
stitcher.SetFeaturesFinder(finder);
stitcher.WaveCorrection = false;
using (VectorOfMat vm = new VectorOfMat())
{
Mat result = new Mat();
for (int i = 0; i < matList.Count; i++)
{
vm.Push(matList[i]);
}
//PlaneWarper throws AccessViolationException, hence not using it
//stitcher.SetWarper(new PlaneWarper(1.0f));
Stitcher.Status status = stitcher.Stitch(vm, result);
if (status != Stitcher.Status.Ok)
{
Console.WriteLine("Can't stitch images, error code = " + status);
return String.Empty;
}
Emgu.CV.CvInvoke.Imwrite("result.png", result);
return "result.png";
}
}
Can anyone help with the correct configurations required so that I get a perfectly stitched image from my set of images?
I have looked upon the stitching pipeline, but not able to understand as its very complex and hence I am using the high level API exposed by Openv.
opencv emgucv image-stitching
add a comment |
up vote
0
down vote
favorite
I have a set of images that I captured when I was changing the scroll bar (both Vertical and Horizontal) positions of an application (chrome) on my desktop. I want to stitch all these images to get a full view of the webpage. For example : https://hub.mangoapps.com/sf/MTUzMjMwXzE2NDYxMTA
I am using EmguCv for this. Below is my code, but I am getting blurry and blackish image by this and it fails terribly when the webpage has some popup or an ad that is at a constant position even though when I am scrolling the page (example : https://hub.mangoapps.com/sf/MTUzNjczXzE2NDkwNzM).
//mode = SCAN
using (Stitcher stitcher = new Stitcher(mode, true))
using (AKAZEFeaturesFinder finder = new AKAZEFeaturesFinder())
{
stitcher.SetFeaturesFinder(finder);
stitcher.WaveCorrection = false;
using (VectorOfMat vm = new VectorOfMat())
{
Mat result = new Mat();
for (int i = 0; i < matList.Count; i++)
{
vm.Push(matList[i]);
}
//PlaneWarper throws AccessViolationException, hence not using it
//stitcher.SetWarper(new PlaneWarper(1.0f));
Stitcher.Status status = stitcher.Stitch(vm, result);
if (status != Stitcher.Status.Ok)
{
Console.WriteLine("Can't stitch images, error code = " + status);
return String.Empty;
}
Emgu.CV.CvInvoke.Imwrite("result.png", result);
return "result.png";
}
}
Can anyone help with the correct configurations required so that I get a perfectly stitched image from my set of images?
I have looked upon the stitching pipeline, but not able to understand as its very complex and hence I am using the high level API exposed by Openv.
opencv emgucv image-stitching
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a set of images that I captured when I was changing the scroll bar (both Vertical and Horizontal) positions of an application (chrome) on my desktop. I want to stitch all these images to get a full view of the webpage. For example : https://hub.mangoapps.com/sf/MTUzMjMwXzE2NDYxMTA
I am using EmguCv for this. Below is my code, but I am getting blurry and blackish image by this and it fails terribly when the webpage has some popup or an ad that is at a constant position even though when I am scrolling the page (example : https://hub.mangoapps.com/sf/MTUzNjczXzE2NDkwNzM).
//mode = SCAN
using (Stitcher stitcher = new Stitcher(mode, true))
using (AKAZEFeaturesFinder finder = new AKAZEFeaturesFinder())
{
stitcher.SetFeaturesFinder(finder);
stitcher.WaveCorrection = false;
using (VectorOfMat vm = new VectorOfMat())
{
Mat result = new Mat();
for (int i = 0; i < matList.Count; i++)
{
vm.Push(matList[i]);
}
//PlaneWarper throws AccessViolationException, hence not using it
//stitcher.SetWarper(new PlaneWarper(1.0f));
Stitcher.Status status = stitcher.Stitch(vm, result);
if (status != Stitcher.Status.Ok)
{
Console.WriteLine("Can't stitch images, error code = " + status);
return String.Empty;
}
Emgu.CV.CvInvoke.Imwrite("result.png", result);
return "result.png";
}
}
Can anyone help with the correct configurations required so that I get a perfectly stitched image from my set of images?
I have looked upon the stitching pipeline, but not able to understand as its very complex and hence I am using the high level API exposed by Openv.
opencv emgucv image-stitching
I have a set of images that I captured when I was changing the scroll bar (both Vertical and Horizontal) positions of an application (chrome) on my desktop. I want to stitch all these images to get a full view of the webpage. For example : https://hub.mangoapps.com/sf/MTUzMjMwXzE2NDYxMTA
I am using EmguCv for this. Below is my code, but I am getting blurry and blackish image by this and it fails terribly when the webpage has some popup or an ad that is at a constant position even though when I am scrolling the page (example : https://hub.mangoapps.com/sf/MTUzNjczXzE2NDkwNzM).
//mode = SCAN
using (Stitcher stitcher = new Stitcher(mode, true))
using (AKAZEFeaturesFinder finder = new AKAZEFeaturesFinder())
{
stitcher.SetFeaturesFinder(finder);
stitcher.WaveCorrection = false;
using (VectorOfMat vm = new VectorOfMat())
{
Mat result = new Mat();
for (int i = 0; i < matList.Count; i++)
{
vm.Push(matList[i]);
}
//PlaneWarper throws AccessViolationException, hence not using it
//stitcher.SetWarper(new PlaneWarper(1.0f));
Stitcher.Status status = stitcher.Stitch(vm, result);
if (status != Stitcher.Status.Ok)
{
Console.WriteLine("Can't stitch images, error code = " + status);
return String.Empty;
}
Emgu.CV.CvInvoke.Imwrite("result.png", result);
return "result.png";
}
}
Can anyone help with the correct configurations required so that I get a perfectly stitched image from my set of images?
I have looked upon the stitching pipeline, but not able to understand as its very complex and hence I am using the high level API exposed by Openv.
opencv emgucv image-stitching
opencv emgucv image-stitching
asked Nov 20 at 7:23
shruti singh
598
598
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53388097%2femgucv-configurations-for-combining-scan-images%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown