Applying homography on non planar surface
As I know, Homography (projective transformation) in computer vision can be used to detect object in images but all the examples, I've seen, were on planar objects. Does Homography only work on a planar surface object? Or It can detect any kind of objects? I'm asking because I tried to find the object below (It's a non planar surface object) with no success:
In this link, you can see the code. I used it as it's with just updating the name of images so what we're doing is the following:
- Getting the keypoints from the 2 images using SURF
- Describe the keypoints using SURF descriptor
- Try to match the keypoints between the 2 images
- Use the list of matched key points to compute Homography matrix.
- Get the coordinates of the object corner points.
- Apply perspectiveTransform to get their correspondings in the scene image
- Draw lines between the results points.
Please note that the green lines drawn inside the big circles in the images are the line drawn to represent the results points.
Based on what I showed above, it seems to me that there is something not clear in my understanding of Homography and where it can be applied because this kind of example is quite simple and it didn't work. I'm currently looking into OpenCV code to understand exactly how they estimate it but it's not going quickly.So, does anyone have any clue on how OpenCV computes this transformation? Or any reference that can help in this situation?
EDITED:
Here is another example:
I applied the homography on the object and the yellow box which is just containing the instrument I need. The results are even worse because now it's somehow a point as you can see in the green point surrounded by the red circle.
Also, I can't take images for the objects from the scene because I have a lot of videos so what I'm doing is taking a separate images for each intruments and trying to find them in the scene videos.
opencv object-detection homography
add a comment |
As I know, Homography (projective transformation) in computer vision can be used to detect object in images but all the examples, I've seen, were on planar objects. Does Homography only work on a planar surface object? Or It can detect any kind of objects? I'm asking because I tried to find the object below (It's a non planar surface object) with no success:
In this link, you can see the code. I used it as it's with just updating the name of images so what we're doing is the following:
- Getting the keypoints from the 2 images using SURF
- Describe the keypoints using SURF descriptor
- Try to match the keypoints between the 2 images
- Use the list of matched key points to compute Homography matrix.
- Get the coordinates of the object corner points.
- Apply perspectiveTransform to get their correspondings in the scene image
- Draw lines between the results points.
Please note that the green lines drawn inside the big circles in the images are the line drawn to represent the results points.
Based on what I showed above, it seems to me that there is something not clear in my understanding of Homography and where it can be applied because this kind of example is quite simple and it didn't work. I'm currently looking into OpenCV code to understand exactly how they estimate it but it's not going quickly.So, does anyone have any clue on how OpenCV computes this transformation? Or any reference that can help in this situation?
EDITED:
Here is another example:
I applied the homography on the object and the yellow box which is just containing the instrument I need. The results are even worse because now it's somehow a point as you can see in the green point surrounded by the red circle.
Also, I can't take images for the objects from the scene because I have a lot of videos so what I'm doing is taking a separate images for each intruments and trying to find them in the scene videos.
opencv object-detection homography
add a comment |
As I know, Homography (projective transformation) in computer vision can be used to detect object in images but all the examples, I've seen, were on planar objects. Does Homography only work on a planar surface object? Or It can detect any kind of objects? I'm asking because I tried to find the object below (It's a non planar surface object) with no success:
In this link, you can see the code. I used it as it's with just updating the name of images so what we're doing is the following:
- Getting the keypoints from the 2 images using SURF
- Describe the keypoints using SURF descriptor
- Try to match the keypoints between the 2 images
- Use the list of matched key points to compute Homography matrix.
- Get the coordinates of the object corner points.
- Apply perspectiveTransform to get their correspondings in the scene image
- Draw lines between the results points.
Please note that the green lines drawn inside the big circles in the images are the line drawn to represent the results points.
Based on what I showed above, it seems to me that there is something not clear in my understanding of Homography and where it can be applied because this kind of example is quite simple and it didn't work. I'm currently looking into OpenCV code to understand exactly how they estimate it but it's not going quickly.So, does anyone have any clue on how OpenCV computes this transformation? Or any reference that can help in this situation?
EDITED:
Here is another example:
I applied the homography on the object and the yellow box which is just containing the instrument I need. The results are even worse because now it's somehow a point as you can see in the green point surrounded by the red circle.
Also, I can't take images for the objects from the scene because I have a lot of videos so what I'm doing is taking a separate images for each intruments and trying to find them in the scene videos.
opencv object-detection homography
As I know, Homography (projective transformation) in computer vision can be used to detect object in images but all the examples, I've seen, were on planar objects. Does Homography only work on a planar surface object? Or It can detect any kind of objects? I'm asking because I tried to find the object below (It's a non planar surface object) with no success:
In this link, you can see the code. I used it as it's with just updating the name of images so what we're doing is the following:
- Getting the keypoints from the 2 images using SURF
- Describe the keypoints using SURF descriptor
- Try to match the keypoints between the 2 images
- Use the list of matched key points to compute Homography matrix.
- Get the coordinates of the object corner points.
- Apply perspectiveTransform to get their correspondings in the scene image
- Draw lines between the results points.
Please note that the green lines drawn inside the big circles in the images are the line drawn to represent the results points.
Based on what I showed above, it seems to me that there is something not clear in my understanding of Homography and where it can be applied because this kind of example is quite simple and it didn't work. I'm currently looking into OpenCV code to understand exactly how they estimate it but it's not going quickly.So, does anyone have any clue on how OpenCV computes this transformation? Or any reference that can help in this situation?
EDITED:
Here is another example:
I applied the homography on the object and the yellow box which is just containing the instrument I need. The results are even worse because now it's somehow a point as you can see in the green point surrounded by the red circle.
Also, I can't take images for the objects from the scene because I have a lot of videos so what I'm doing is taking a separate images for each intruments and trying to find them in the scene videos.
opencv object-detection homography
opencv object-detection homography
edited Jun 10 '15 at 15:36
Maystro
asked Jun 4 '15 at 14:01
MaystroMaystro
1,30342053
1,30342053
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Strictly speaking, you are right, homographies only map observations of planar objects. It is not very clear in your post, but my guess is that the matches you are showing are the inlier matches found by findHomography
. As you said, such an approach works well for planar objects. In case of non-planar but rigid objects, the equivalent would be the inlier matches found by findFundamentalMat
(see OpenCV doc and the Wikipedia page).
Still, in practice, using an homography should at least provide an approximate solution.
In my opinion, your problem is more related to poor SURF matches and not so much with the choice of the homography transform. This is quite clear when looking at the pair of images you are showing: there's only a couple of points matched to the object you want to detect, while the majority of them are matched with various things in the scene.
One of the main concerns with the approach you have chosen is that you are not dealing with rigid objects, but with deformable ones: the handle of the seringue can move, there are non linear deformation of the appearance due to the liquid inside the seringue, etc... Such deformations can make the SURF descriptors extracted in the target image quite different from those extracted in the reference image and therefore impossible to match. Have a look at [1], they provide good insights on why descriptors happen to match or not.
For your problem, alternative approaches might be local matching (e.g. with small correlation patches), color matching, shape matching, deep learning, etc.
[1]: Vondrick, Carl, et al. "Hoggles: Visualizing object detection features." Computer Vision (ICCV), 2013 IEEE International Conference on. IEEE, 2013. (link)
Thanks for your contribution. Any reason why it does not work on non planar objects?
– Maystro
Jun 11 '15 at 15:30
Simply that an homography is a transform model mapping a plane seen in an image into another plane. For non planar object, you should use the fundamental matrix, which represent another type of transform.
– BConic
Jun 11 '15 at 16:45
Thanks.. Since your answer was the best between the ones I received.. I will give u the bounty..
– Maystro
Jun 14 '15 at 9:50
Well, thank you. If there is still something unclear (related to this topic), don't hesitate to express your doubts, though. Maybe you can have a look at this tutorial on homographies?
– BConic
Jun 14 '15 at 10:28
Thanks.. it seems interesting.. will look into it.
– Maystro
Jun 14 '15 at 10:29
add a comment |
SURF works with any kind of objects, I tested the same code which you are using on my image, and here are the results.
Upon my understanding, the algorithm does not always support in finding the objects in another scene.
It works well if the object image is extracted from the scene image.
Try these different options depending on your need:
(1) If you have various series of source images, you can extract the desired object from the scene image and find its position in other scene images.
(2) Try to crop the object image without any background, it is not always successful, but it will work even if the angle changes.
(3) Sometimes changing the minHessian value, and depending on the keypoints count, where only lesser keypoints will be detected you will have a chance of detecting your image.
Thanks for you contributation. The idea is that I have to detect the list of instruments presented in the scene so I took images for each instrument and I'm trying to detect them.
– Maystro
Jun 10 '15 at 14:52
How will your scene images be? are they a series of images taken form a fixed camera position?
– Aditya_GVL
Jun 10 '15 at 15:00
Can you try in cropping individual object from the scene image and then compare them over the scene image? That helps, it will work in other scenes too.
– Aditya_GVL
Jun 10 '15 at 15:01
Question edited, @Aditya_GVL
– Maystro
Jun 10 '15 at 15:36
@Maystro Did you find any feature detection method to get successful results for your project? I have a similar project to work on as well. Thanks.
– Aditya_GVL
Jun 12 '15 at 14:33
|
show 1 more comment
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f30645934%2fapplying-homography-on-non-planar-surface%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Strictly speaking, you are right, homographies only map observations of planar objects. It is not very clear in your post, but my guess is that the matches you are showing are the inlier matches found by findHomography
. As you said, such an approach works well for planar objects. In case of non-planar but rigid objects, the equivalent would be the inlier matches found by findFundamentalMat
(see OpenCV doc and the Wikipedia page).
Still, in practice, using an homography should at least provide an approximate solution.
In my opinion, your problem is more related to poor SURF matches and not so much with the choice of the homography transform. This is quite clear when looking at the pair of images you are showing: there's only a couple of points matched to the object you want to detect, while the majority of them are matched with various things in the scene.
One of the main concerns with the approach you have chosen is that you are not dealing with rigid objects, but with deformable ones: the handle of the seringue can move, there are non linear deformation of the appearance due to the liquid inside the seringue, etc... Such deformations can make the SURF descriptors extracted in the target image quite different from those extracted in the reference image and therefore impossible to match. Have a look at [1], they provide good insights on why descriptors happen to match or not.
For your problem, alternative approaches might be local matching (e.g. with small correlation patches), color matching, shape matching, deep learning, etc.
[1]: Vondrick, Carl, et al. "Hoggles: Visualizing object detection features." Computer Vision (ICCV), 2013 IEEE International Conference on. IEEE, 2013. (link)
Thanks for your contribution. Any reason why it does not work on non planar objects?
– Maystro
Jun 11 '15 at 15:30
Simply that an homography is a transform model mapping a plane seen in an image into another plane. For non planar object, you should use the fundamental matrix, which represent another type of transform.
– BConic
Jun 11 '15 at 16:45
Thanks.. Since your answer was the best between the ones I received.. I will give u the bounty..
– Maystro
Jun 14 '15 at 9:50
Well, thank you. If there is still something unclear (related to this topic), don't hesitate to express your doubts, though. Maybe you can have a look at this tutorial on homographies?
– BConic
Jun 14 '15 at 10:28
Thanks.. it seems interesting.. will look into it.
– Maystro
Jun 14 '15 at 10:29
add a comment |
Strictly speaking, you are right, homographies only map observations of planar objects. It is not very clear in your post, but my guess is that the matches you are showing are the inlier matches found by findHomography
. As you said, such an approach works well for planar objects. In case of non-planar but rigid objects, the equivalent would be the inlier matches found by findFundamentalMat
(see OpenCV doc and the Wikipedia page).
Still, in practice, using an homography should at least provide an approximate solution.
In my opinion, your problem is more related to poor SURF matches and not so much with the choice of the homography transform. This is quite clear when looking at the pair of images you are showing: there's only a couple of points matched to the object you want to detect, while the majority of them are matched with various things in the scene.
One of the main concerns with the approach you have chosen is that you are not dealing with rigid objects, but with deformable ones: the handle of the seringue can move, there are non linear deformation of the appearance due to the liquid inside the seringue, etc... Such deformations can make the SURF descriptors extracted in the target image quite different from those extracted in the reference image and therefore impossible to match. Have a look at [1], they provide good insights on why descriptors happen to match or not.
For your problem, alternative approaches might be local matching (e.g. with small correlation patches), color matching, shape matching, deep learning, etc.
[1]: Vondrick, Carl, et al. "Hoggles: Visualizing object detection features." Computer Vision (ICCV), 2013 IEEE International Conference on. IEEE, 2013. (link)
Thanks for your contribution. Any reason why it does not work on non planar objects?
– Maystro
Jun 11 '15 at 15:30
Simply that an homography is a transform model mapping a plane seen in an image into another plane. For non planar object, you should use the fundamental matrix, which represent another type of transform.
– BConic
Jun 11 '15 at 16:45
Thanks.. Since your answer was the best between the ones I received.. I will give u the bounty..
– Maystro
Jun 14 '15 at 9:50
Well, thank you. If there is still something unclear (related to this topic), don't hesitate to express your doubts, though. Maybe you can have a look at this tutorial on homographies?
– BConic
Jun 14 '15 at 10:28
Thanks.. it seems interesting.. will look into it.
– Maystro
Jun 14 '15 at 10:29
add a comment |
Strictly speaking, you are right, homographies only map observations of planar objects. It is not very clear in your post, but my guess is that the matches you are showing are the inlier matches found by findHomography
. As you said, such an approach works well for planar objects. In case of non-planar but rigid objects, the equivalent would be the inlier matches found by findFundamentalMat
(see OpenCV doc and the Wikipedia page).
Still, in practice, using an homography should at least provide an approximate solution.
In my opinion, your problem is more related to poor SURF matches and not so much with the choice of the homography transform. This is quite clear when looking at the pair of images you are showing: there's only a couple of points matched to the object you want to detect, while the majority of them are matched with various things in the scene.
One of the main concerns with the approach you have chosen is that you are not dealing with rigid objects, but with deformable ones: the handle of the seringue can move, there are non linear deformation of the appearance due to the liquid inside the seringue, etc... Such deformations can make the SURF descriptors extracted in the target image quite different from those extracted in the reference image and therefore impossible to match. Have a look at [1], they provide good insights on why descriptors happen to match or not.
For your problem, alternative approaches might be local matching (e.g. with small correlation patches), color matching, shape matching, deep learning, etc.
[1]: Vondrick, Carl, et al. "Hoggles: Visualizing object detection features." Computer Vision (ICCV), 2013 IEEE International Conference on. IEEE, 2013. (link)
Strictly speaking, you are right, homographies only map observations of planar objects. It is not very clear in your post, but my guess is that the matches you are showing are the inlier matches found by findHomography
. As you said, such an approach works well for planar objects. In case of non-planar but rigid objects, the equivalent would be the inlier matches found by findFundamentalMat
(see OpenCV doc and the Wikipedia page).
Still, in practice, using an homography should at least provide an approximate solution.
In my opinion, your problem is more related to poor SURF matches and not so much with the choice of the homography transform. This is quite clear when looking at the pair of images you are showing: there's only a couple of points matched to the object you want to detect, while the majority of them are matched with various things in the scene.
One of the main concerns with the approach you have chosen is that you are not dealing with rigid objects, but with deformable ones: the handle of the seringue can move, there are non linear deformation of the appearance due to the liquid inside the seringue, etc... Such deformations can make the SURF descriptors extracted in the target image quite different from those extracted in the reference image and therefore impossible to match. Have a look at [1], they provide good insights on why descriptors happen to match or not.
For your problem, alternative approaches might be local matching (e.g. with small correlation patches), color matching, shape matching, deep learning, etc.
[1]: Vondrick, Carl, et al. "Hoggles: Visualizing object detection features." Computer Vision (ICCV), 2013 IEEE International Conference on. IEEE, 2013. (link)
edited Jun 10 '15 at 20:15
answered Jun 10 '15 at 19:19
BConicBConic
6,38521537
6,38521537
Thanks for your contribution. Any reason why it does not work on non planar objects?
– Maystro
Jun 11 '15 at 15:30
Simply that an homography is a transform model mapping a plane seen in an image into another plane. For non planar object, you should use the fundamental matrix, which represent another type of transform.
– BConic
Jun 11 '15 at 16:45
Thanks.. Since your answer was the best between the ones I received.. I will give u the bounty..
– Maystro
Jun 14 '15 at 9:50
Well, thank you. If there is still something unclear (related to this topic), don't hesitate to express your doubts, though. Maybe you can have a look at this tutorial on homographies?
– BConic
Jun 14 '15 at 10:28
Thanks.. it seems interesting.. will look into it.
– Maystro
Jun 14 '15 at 10:29
add a comment |
Thanks for your contribution. Any reason why it does not work on non planar objects?
– Maystro
Jun 11 '15 at 15:30
Simply that an homography is a transform model mapping a plane seen in an image into another plane. For non planar object, you should use the fundamental matrix, which represent another type of transform.
– BConic
Jun 11 '15 at 16:45
Thanks.. Since your answer was the best between the ones I received.. I will give u the bounty..
– Maystro
Jun 14 '15 at 9:50
Well, thank you. If there is still something unclear (related to this topic), don't hesitate to express your doubts, though. Maybe you can have a look at this tutorial on homographies?
– BConic
Jun 14 '15 at 10:28
Thanks.. it seems interesting.. will look into it.
– Maystro
Jun 14 '15 at 10:29
Thanks for your contribution. Any reason why it does not work on non planar objects?
– Maystro
Jun 11 '15 at 15:30
Thanks for your contribution. Any reason why it does not work on non planar objects?
– Maystro
Jun 11 '15 at 15:30
Simply that an homography is a transform model mapping a plane seen in an image into another plane. For non planar object, you should use the fundamental matrix, which represent another type of transform.
– BConic
Jun 11 '15 at 16:45
Simply that an homography is a transform model mapping a plane seen in an image into another plane. For non planar object, you should use the fundamental matrix, which represent another type of transform.
– BConic
Jun 11 '15 at 16:45
Thanks.. Since your answer was the best between the ones I received.. I will give u the bounty..
– Maystro
Jun 14 '15 at 9:50
Thanks.. Since your answer was the best between the ones I received.. I will give u the bounty..
– Maystro
Jun 14 '15 at 9:50
Well, thank you. If there is still something unclear (related to this topic), don't hesitate to express your doubts, though. Maybe you can have a look at this tutorial on homographies?
– BConic
Jun 14 '15 at 10:28
Well, thank you. If there is still something unclear (related to this topic), don't hesitate to express your doubts, though. Maybe you can have a look at this tutorial on homographies?
– BConic
Jun 14 '15 at 10:28
Thanks.. it seems interesting.. will look into it.
– Maystro
Jun 14 '15 at 10:29
Thanks.. it seems interesting.. will look into it.
– Maystro
Jun 14 '15 at 10:29
add a comment |
SURF works with any kind of objects, I tested the same code which you are using on my image, and here are the results.
Upon my understanding, the algorithm does not always support in finding the objects in another scene.
It works well if the object image is extracted from the scene image.
Try these different options depending on your need:
(1) If you have various series of source images, you can extract the desired object from the scene image and find its position in other scene images.
(2) Try to crop the object image without any background, it is not always successful, but it will work even if the angle changes.
(3) Sometimes changing the minHessian value, and depending on the keypoints count, where only lesser keypoints will be detected you will have a chance of detecting your image.
Thanks for you contributation. The idea is that I have to detect the list of instruments presented in the scene so I took images for each instrument and I'm trying to detect them.
– Maystro
Jun 10 '15 at 14:52
How will your scene images be? are they a series of images taken form a fixed camera position?
– Aditya_GVL
Jun 10 '15 at 15:00
Can you try in cropping individual object from the scene image and then compare them over the scene image? That helps, it will work in other scenes too.
– Aditya_GVL
Jun 10 '15 at 15:01
Question edited, @Aditya_GVL
– Maystro
Jun 10 '15 at 15:36
@Maystro Did you find any feature detection method to get successful results for your project? I have a similar project to work on as well. Thanks.
– Aditya_GVL
Jun 12 '15 at 14:33
|
show 1 more comment
SURF works with any kind of objects, I tested the same code which you are using on my image, and here are the results.
Upon my understanding, the algorithm does not always support in finding the objects in another scene.
It works well if the object image is extracted from the scene image.
Try these different options depending on your need:
(1) If you have various series of source images, you can extract the desired object from the scene image and find its position in other scene images.
(2) Try to crop the object image without any background, it is not always successful, but it will work even if the angle changes.
(3) Sometimes changing the minHessian value, and depending on the keypoints count, where only lesser keypoints will be detected you will have a chance of detecting your image.
Thanks for you contributation. The idea is that I have to detect the list of instruments presented in the scene so I took images for each instrument and I'm trying to detect them.
– Maystro
Jun 10 '15 at 14:52
How will your scene images be? are they a series of images taken form a fixed camera position?
– Aditya_GVL
Jun 10 '15 at 15:00
Can you try in cropping individual object from the scene image and then compare them over the scene image? That helps, it will work in other scenes too.
– Aditya_GVL
Jun 10 '15 at 15:01
Question edited, @Aditya_GVL
– Maystro
Jun 10 '15 at 15:36
@Maystro Did you find any feature detection method to get successful results for your project? I have a similar project to work on as well. Thanks.
– Aditya_GVL
Jun 12 '15 at 14:33
|
show 1 more comment
SURF works with any kind of objects, I tested the same code which you are using on my image, and here are the results.
Upon my understanding, the algorithm does not always support in finding the objects in another scene.
It works well if the object image is extracted from the scene image.
Try these different options depending on your need:
(1) If you have various series of source images, you can extract the desired object from the scene image and find its position in other scene images.
(2) Try to crop the object image without any background, it is not always successful, but it will work even if the angle changes.
(3) Sometimes changing the minHessian value, and depending on the keypoints count, where only lesser keypoints will be detected you will have a chance of detecting your image.
SURF works with any kind of objects, I tested the same code which you are using on my image, and here are the results.
Upon my understanding, the algorithm does not always support in finding the objects in another scene.
It works well if the object image is extracted from the scene image.
Try these different options depending on your need:
(1) If you have various series of source images, you can extract the desired object from the scene image and find its position in other scene images.
(2) Try to crop the object image without any background, it is not always successful, but it will work even if the angle changes.
(3) Sometimes changing the minHessian value, and depending on the keypoints count, where only lesser keypoints will be detected you will have a chance of detecting your image.
answered Jun 10 '15 at 14:44
Aditya_GVLAditya_GVL
35
35
Thanks for you contributation. The idea is that I have to detect the list of instruments presented in the scene so I took images for each instrument and I'm trying to detect them.
– Maystro
Jun 10 '15 at 14:52
How will your scene images be? are they a series of images taken form a fixed camera position?
– Aditya_GVL
Jun 10 '15 at 15:00
Can you try in cropping individual object from the scene image and then compare them over the scene image? That helps, it will work in other scenes too.
– Aditya_GVL
Jun 10 '15 at 15:01
Question edited, @Aditya_GVL
– Maystro
Jun 10 '15 at 15:36
@Maystro Did you find any feature detection method to get successful results for your project? I have a similar project to work on as well. Thanks.
– Aditya_GVL
Jun 12 '15 at 14:33
|
show 1 more comment
Thanks for you contributation. The idea is that I have to detect the list of instruments presented in the scene so I took images for each instrument and I'm trying to detect them.
– Maystro
Jun 10 '15 at 14:52
How will your scene images be? are they a series of images taken form a fixed camera position?
– Aditya_GVL
Jun 10 '15 at 15:00
Can you try in cropping individual object from the scene image and then compare them over the scene image? That helps, it will work in other scenes too.
– Aditya_GVL
Jun 10 '15 at 15:01
Question edited, @Aditya_GVL
– Maystro
Jun 10 '15 at 15:36
@Maystro Did you find any feature detection method to get successful results for your project? I have a similar project to work on as well. Thanks.
– Aditya_GVL
Jun 12 '15 at 14:33
Thanks for you contributation. The idea is that I have to detect the list of instruments presented in the scene so I took images for each instrument and I'm trying to detect them.
– Maystro
Jun 10 '15 at 14:52
Thanks for you contributation. The idea is that I have to detect the list of instruments presented in the scene so I took images for each instrument and I'm trying to detect them.
– Maystro
Jun 10 '15 at 14:52
How will your scene images be? are they a series of images taken form a fixed camera position?
– Aditya_GVL
Jun 10 '15 at 15:00
How will your scene images be? are they a series of images taken form a fixed camera position?
– Aditya_GVL
Jun 10 '15 at 15:00
Can you try in cropping individual object from the scene image and then compare them over the scene image? That helps, it will work in other scenes too.
– Aditya_GVL
Jun 10 '15 at 15:01
Can you try in cropping individual object from the scene image and then compare them over the scene image? That helps, it will work in other scenes too.
– Aditya_GVL
Jun 10 '15 at 15:01
Question edited, @Aditya_GVL
– Maystro
Jun 10 '15 at 15:36
Question edited, @Aditya_GVL
– Maystro
Jun 10 '15 at 15:36
@Maystro Did you find any feature detection method to get successful results for your project? I have a similar project to work on as well. Thanks.
– Aditya_GVL
Jun 12 '15 at 14:33
@Maystro Did you find any feature detection method to get successful results for your project? I have a similar project to work on as well. Thanks.
– Aditya_GVL
Jun 12 '15 at 14:33
|
show 1 more comment
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.
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%2f30645934%2fapplying-homography-on-non-planar-surface%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