Averaging pixels in image ROI
I have the following image and I would like to apply averaging on each masked region (not the bounding box) in the image.
As you can see, right now, the regions have changing values inside them on the heat map. Some pixels are yellowish, some are purplish. I want this to be not the case inside the masks.
So what I need to do is (I guess):
- to find which coordinates correspond to the masks
- average the pixels within these coordinates
Here is how the masks are found:
file_names = glob(os.path.join(IMAGE_DIR, "*.jpg"))
masks_prediction = np.zeros((521, 768, len(file_names)))
for i in range(len(file_names)):
print(i)
image = skimage.io.imread(file_names[i])
predictions = model.detect([image], verbose=1)
p = predictions[0]
masks = p['masks']
merged_mask = np.zeros((masks.shape[0], masks.shape[1]))
for j in range(masks.shape[2]):
merged_mask[masks[:,:,j]==True] = True
masks_prediction[:,:,i] = merged_mask
Here is the function which applies the masks:
def apply_mask(image, mask, color, alpha=0.5):
"""Apply the given mask to the image.
"""
for c in range(3):
image[:, :, c] = np.where(mask == 1,
image[:, :, c] *
(1 - alpha) + alpha * color[c] * 255,
image[:, :, c])
return image
and in the main file, here is how it is used:
mask = masks[:, :, i]
if show_mask:
masked_image = apply_mask(masked_image, mask, color)
So I need to make a modification in somewhere here but I don't know where exactly.
python image opencv tensorflow image-processing
add a comment |
I have the following image and I would like to apply averaging on each masked region (not the bounding box) in the image.
As you can see, right now, the regions have changing values inside them on the heat map. Some pixels are yellowish, some are purplish. I want this to be not the case inside the masks.
So what I need to do is (I guess):
- to find which coordinates correspond to the masks
- average the pixels within these coordinates
Here is how the masks are found:
file_names = glob(os.path.join(IMAGE_DIR, "*.jpg"))
masks_prediction = np.zeros((521, 768, len(file_names)))
for i in range(len(file_names)):
print(i)
image = skimage.io.imread(file_names[i])
predictions = model.detect([image], verbose=1)
p = predictions[0]
masks = p['masks']
merged_mask = np.zeros((masks.shape[0], masks.shape[1]))
for j in range(masks.shape[2]):
merged_mask[masks[:,:,j]==True] = True
masks_prediction[:,:,i] = merged_mask
Here is the function which applies the masks:
def apply_mask(image, mask, color, alpha=0.5):
"""Apply the given mask to the image.
"""
for c in range(3):
image[:, :, c] = np.where(mask == 1,
image[:, :, c] *
(1 - alpha) + alpha * color[c] * 255,
image[:, :, c])
return image
and in the main file, here is how it is used:
mask = masks[:, :, i]
if show_mask:
masked_image = apply_mask(masked_image, mask, color)
So I need to make a modification in somewhere here but I don't know where exactly.
python image opencv tensorflow image-processing
add a comment |
I have the following image and I would like to apply averaging on each masked region (not the bounding box) in the image.
As you can see, right now, the regions have changing values inside them on the heat map. Some pixels are yellowish, some are purplish. I want this to be not the case inside the masks.
So what I need to do is (I guess):
- to find which coordinates correspond to the masks
- average the pixels within these coordinates
Here is how the masks are found:
file_names = glob(os.path.join(IMAGE_DIR, "*.jpg"))
masks_prediction = np.zeros((521, 768, len(file_names)))
for i in range(len(file_names)):
print(i)
image = skimage.io.imread(file_names[i])
predictions = model.detect([image], verbose=1)
p = predictions[0]
masks = p['masks']
merged_mask = np.zeros((masks.shape[0], masks.shape[1]))
for j in range(masks.shape[2]):
merged_mask[masks[:,:,j]==True] = True
masks_prediction[:,:,i] = merged_mask
Here is the function which applies the masks:
def apply_mask(image, mask, color, alpha=0.5):
"""Apply the given mask to the image.
"""
for c in range(3):
image[:, :, c] = np.where(mask == 1,
image[:, :, c] *
(1 - alpha) + alpha * color[c] * 255,
image[:, :, c])
return image
and in the main file, here is how it is used:
mask = masks[:, :, i]
if show_mask:
masked_image = apply_mask(masked_image, mask, color)
So I need to make a modification in somewhere here but I don't know where exactly.
python image opencv tensorflow image-processing
I have the following image and I would like to apply averaging on each masked region (not the bounding box) in the image.
As you can see, right now, the regions have changing values inside them on the heat map. Some pixels are yellowish, some are purplish. I want this to be not the case inside the masks.
So what I need to do is (I guess):
- to find which coordinates correspond to the masks
- average the pixels within these coordinates
Here is how the masks are found:
file_names = glob(os.path.join(IMAGE_DIR, "*.jpg"))
masks_prediction = np.zeros((521, 768, len(file_names)))
for i in range(len(file_names)):
print(i)
image = skimage.io.imread(file_names[i])
predictions = model.detect([image], verbose=1)
p = predictions[0]
masks = p['masks']
merged_mask = np.zeros((masks.shape[0], masks.shape[1]))
for j in range(masks.shape[2]):
merged_mask[masks[:,:,j]==True] = True
masks_prediction[:,:,i] = merged_mask
Here is the function which applies the masks:
def apply_mask(image, mask, color, alpha=0.5):
"""Apply the given mask to the image.
"""
for c in range(3):
image[:, :, c] = np.where(mask == 1,
image[:, :, c] *
(1 - alpha) + alpha * color[c] * 255,
image[:, :, c])
return image
and in the main file, here is how it is used:
mask = masks[:, :, i]
if show_mask:
masked_image = apply_mask(masked_image, mask, color)
So I need to make a modification in somewhere here but I don't know where exactly.
python image opencv tensorflow image-processing
python image opencv tensorflow image-processing
asked Nov 23 '18 at 8:09
SchützeSchütze
124525
124525
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I think the mask you are looking for is provided by the code :
mask = masks[:, :, i]
where i refers to the number of mask you have.
You can obtain the average values of the mask region from the original image using the openCV function mean
Here is how your code should look like:
mask = masks[:, :, i]
avg_masked_value = cv2.mean(original_image,mask)
where original_image is the original image you loaded and avg_masked_value will contain 3x1 array of averaged value.
add a 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%2f53442801%2faveraging-pixels-in-image-roi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think the mask you are looking for is provided by the code :
mask = masks[:, :, i]
where i refers to the number of mask you have.
You can obtain the average values of the mask region from the original image using the openCV function mean
Here is how your code should look like:
mask = masks[:, :, i]
avg_masked_value = cv2.mean(original_image,mask)
where original_image is the original image you loaded and avg_masked_value will contain 3x1 array of averaged value.
add a comment |
I think the mask you are looking for is provided by the code :
mask = masks[:, :, i]
where i refers to the number of mask you have.
You can obtain the average values of the mask region from the original image using the openCV function mean
Here is how your code should look like:
mask = masks[:, :, i]
avg_masked_value = cv2.mean(original_image,mask)
where original_image is the original image you loaded and avg_masked_value will contain 3x1 array of averaged value.
add a comment |
I think the mask you are looking for is provided by the code :
mask = masks[:, :, i]
where i refers to the number of mask you have.
You can obtain the average values of the mask region from the original image using the openCV function mean
Here is how your code should look like:
mask = masks[:, :, i]
avg_masked_value = cv2.mean(original_image,mask)
where original_image is the original image you loaded and avg_masked_value will contain 3x1 array of averaged value.
I think the mask you are looking for is provided by the code :
mask = masks[:, :, i]
where i refers to the number of mask you have.
You can obtain the average values of the mask region from the original image using the openCV function mean
Here is how your code should look like:
mask = masks[:, :, i]
avg_masked_value = cv2.mean(original_image,mask)
where original_image is the original image you loaded and avg_masked_value will contain 3x1 array of averaged value.
answered Nov 23 '18 at 13:19
yapws87yapws87
1,013213
1,013213
add a comment |
add a 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%2f53442801%2faveraging-pixels-in-image-roi%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