get an average image from multiple Emgu.Cv.Mat
I have to get an average image from a set of images using Emgu.CV. The Input Images are Image<Gray,byte> (1 channel, 1 byte pixels)
. I have written this method but it does not seam to work:
public static Mat GetAverage(List<Mat> matrices)
{
//where to store the result
Mat result = new Mat(matrices.First().Size,
DepthType.Cv16U,
matrices.First().NumberOfChannels);
//where to store the partial sums
using (Mat elementwiseSum = new Mat(matrices.First().Size,
DepthType.Cv64F,
matrices.First().NumberOfChannels))
{
// loop over the input
foreach (Mat matrix in matrices)
{
// sum each image to the partial sum
CvInvoke.Accumulate(matrix, elementwiseSum);
}
// convert to UInt16 and scale by the number of input images
elementwiseSum.ConvertTo(result,
DepthType.Cv16U,
1.0 / matrices.Count);
}
return result;
}
Both elementwiseSum
and result
seam to be black images... What am I doing wrong?
c# image emgucv
add a comment |
I have to get an average image from a set of images using Emgu.CV. The Input Images are Image<Gray,byte> (1 channel, 1 byte pixels)
. I have written this method but it does not seam to work:
public static Mat GetAverage(List<Mat> matrices)
{
//where to store the result
Mat result = new Mat(matrices.First().Size,
DepthType.Cv16U,
matrices.First().NumberOfChannels);
//where to store the partial sums
using (Mat elementwiseSum = new Mat(matrices.First().Size,
DepthType.Cv64F,
matrices.First().NumberOfChannels))
{
// loop over the input
foreach (Mat matrix in matrices)
{
// sum each image to the partial sum
CvInvoke.Accumulate(matrix, elementwiseSum);
}
// convert to UInt16 and scale by the number of input images
elementwiseSum.ConvertTo(result,
DepthType.Cv16U,
1.0 / matrices.Count);
}
return result;
}
Both elementwiseSum
and result
seam to be black images... What am I doing wrong?
c# image emgucv
How do you visualize elementwiseSum and result? Are you using Imshow?
– Quergo
Nov 20 '18 at 20:34
I tried to run your code with 2 images and I see strange result. When I useCvInvoke.Imshow()
, theelementwiseSum
is completely white and theresult
is completely black. But when I show them to aPictureBox
, it showed the combination of the 2 images.
– Ha Bom
Nov 21 '18 at 5:00
All theMat
in theList
have the same size?
– Ha Bom
Nov 21 '18 at 5:01
Dear all, I visualized the results by drawing the Mat.Bitmapin a windows.Form.PictureBox and yes the images have the same size (I use the same picture multiple times for testing the method)
– Nicolo' B.
Nov 21 '18 at 17:17
Usually there may be problems when trying to directly visualize images with depth > 8bit. Try to convert your result image to Cv8U and visualize it.
– Quergo
Nov 22 '18 at 11:00
add a comment |
I have to get an average image from a set of images using Emgu.CV. The Input Images are Image<Gray,byte> (1 channel, 1 byte pixels)
. I have written this method but it does not seam to work:
public static Mat GetAverage(List<Mat> matrices)
{
//where to store the result
Mat result = new Mat(matrices.First().Size,
DepthType.Cv16U,
matrices.First().NumberOfChannels);
//where to store the partial sums
using (Mat elementwiseSum = new Mat(matrices.First().Size,
DepthType.Cv64F,
matrices.First().NumberOfChannels))
{
// loop over the input
foreach (Mat matrix in matrices)
{
// sum each image to the partial sum
CvInvoke.Accumulate(matrix, elementwiseSum);
}
// convert to UInt16 and scale by the number of input images
elementwiseSum.ConvertTo(result,
DepthType.Cv16U,
1.0 / matrices.Count);
}
return result;
}
Both elementwiseSum
and result
seam to be black images... What am I doing wrong?
c# image emgucv
I have to get an average image from a set of images using Emgu.CV. The Input Images are Image<Gray,byte> (1 channel, 1 byte pixels)
. I have written this method but it does not seam to work:
public static Mat GetAverage(List<Mat> matrices)
{
//where to store the result
Mat result = new Mat(matrices.First().Size,
DepthType.Cv16U,
matrices.First().NumberOfChannels);
//where to store the partial sums
using (Mat elementwiseSum = new Mat(matrices.First().Size,
DepthType.Cv64F,
matrices.First().NumberOfChannels))
{
// loop over the input
foreach (Mat matrix in matrices)
{
// sum each image to the partial sum
CvInvoke.Accumulate(matrix, elementwiseSum);
}
// convert to UInt16 and scale by the number of input images
elementwiseSum.ConvertTo(result,
DepthType.Cv16U,
1.0 / matrices.Count);
}
return result;
}
Both elementwiseSum
and result
seam to be black images... What am I doing wrong?
c# image emgucv
c# image emgucv
edited Nov 20 '18 at 16:15


Ɖiamond ǤeezeƦ
2,65532136
2,65532136
asked Nov 20 '18 at 16:09


Nicolo' B.Nicolo' B.
11
11
How do you visualize elementwiseSum and result? Are you using Imshow?
– Quergo
Nov 20 '18 at 20:34
I tried to run your code with 2 images and I see strange result. When I useCvInvoke.Imshow()
, theelementwiseSum
is completely white and theresult
is completely black. But when I show them to aPictureBox
, it showed the combination of the 2 images.
– Ha Bom
Nov 21 '18 at 5:00
All theMat
in theList
have the same size?
– Ha Bom
Nov 21 '18 at 5:01
Dear all, I visualized the results by drawing the Mat.Bitmapin a windows.Form.PictureBox and yes the images have the same size (I use the same picture multiple times for testing the method)
– Nicolo' B.
Nov 21 '18 at 17:17
Usually there may be problems when trying to directly visualize images with depth > 8bit. Try to convert your result image to Cv8U and visualize it.
– Quergo
Nov 22 '18 at 11:00
add a comment |
How do you visualize elementwiseSum and result? Are you using Imshow?
– Quergo
Nov 20 '18 at 20:34
I tried to run your code with 2 images and I see strange result. When I useCvInvoke.Imshow()
, theelementwiseSum
is completely white and theresult
is completely black. But when I show them to aPictureBox
, it showed the combination of the 2 images.
– Ha Bom
Nov 21 '18 at 5:00
All theMat
in theList
have the same size?
– Ha Bom
Nov 21 '18 at 5:01
Dear all, I visualized the results by drawing the Mat.Bitmapin a windows.Form.PictureBox and yes the images have the same size (I use the same picture multiple times for testing the method)
– Nicolo' B.
Nov 21 '18 at 17:17
Usually there may be problems when trying to directly visualize images with depth > 8bit. Try to convert your result image to Cv8U and visualize it.
– Quergo
Nov 22 '18 at 11:00
How do you visualize elementwiseSum and result? Are you using Imshow?
– Quergo
Nov 20 '18 at 20:34
How do you visualize elementwiseSum and result? Are you using Imshow?
– Quergo
Nov 20 '18 at 20:34
I tried to run your code with 2 images and I see strange result. When I use
CvInvoke.Imshow()
, the elementwiseSum
is completely white and the result
is completely black. But when I show them to a PictureBox
, it showed the combination of the 2 images.– Ha Bom
Nov 21 '18 at 5:00
I tried to run your code with 2 images and I see strange result. When I use
CvInvoke.Imshow()
, the elementwiseSum
is completely white and the result
is completely black. But when I show them to a PictureBox
, it showed the combination of the 2 images.– Ha Bom
Nov 21 '18 at 5:00
All the
Mat
in the List
have the same size?– Ha Bom
Nov 21 '18 at 5:01
All the
Mat
in the List
have the same size?– Ha Bom
Nov 21 '18 at 5:01
Dear all, I visualized the results by drawing the Mat.Bitmapin a windows.Form.PictureBox and yes the images have the same size (I use the same picture multiple times for testing the method)
– Nicolo' B.
Nov 21 '18 at 17:17
Dear all, I visualized the results by drawing the Mat.Bitmapin a windows.Form.PictureBox and yes the images have the same size (I use the same picture multiple times for testing the method)
– Nicolo' B.
Nov 21 '18 at 17:17
Usually there may be problems when trying to directly visualize images with depth > 8bit. Try to convert your result image to Cv8U and visualize it.
– Quergo
Nov 22 '18 at 11:00
Usually there may be problems when trying to directly visualize images with depth > 8bit. Try to convert your result image to Cv8U and visualize it.
– Quergo
Nov 22 '18 at 11:00
add a comment |
0
active
oldest
votes
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%2f53397050%2fget-an-average-image-from-multiple-emgu-cv-mat%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
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.
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%2f53397050%2fget-an-average-image-from-multiple-emgu-cv-mat%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
How do you visualize elementwiseSum and result? Are you using Imshow?
– Quergo
Nov 20 '18 at 20:34
I tried to run your code with 2 images and I see strange result. When I use
CvInvoke.Imshow()
, theelementwiseSum
is completely white and theresult
is completely black. But when I show them to aPictureBox
, it showed the combination of the 2 images.– Ha Bom
Nov 21 '18 at 5:00
All the
Mat
in theList
have the same size?– Ha Bom
Nov 21 '18 at 5:01
Dear all, I visualized the results by drawing the Mat.Bitmapin a windows.Form.PictureBox and yes the images have the same size (I use the same picture multiple times for testing the method)
– Nicolo' B.
Nov 21 '18 at 17:17
Usually there may be problems when trying to directly visualize images with depth > 8bit. Try to convert your result image to Cv8U and visualize it.
– Quergo
Nov 22 '18 at 11:00