Color display abnormal after gray scaling using opencv in Python
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am trying to use Opencv in python to process digital pathology images. I convert the csv image into array and I want to convert the image to gray scale, here is my code:
start = time.time()
slide = openslide.open_slide("/Users/mihaoyang/Desktop/Pathology_Images/348980_case2_CD4.svs")
level_count = slide.level_count
print('level_count = ', level_count)
[column, row] = slide.dimensions
print('dimensions = ', column, row)
[column0, row0] = slide.level_dimensions[0]
[column1, row1] = slide.level_dimensions[1]
[column2, row2] = slide.level_dimensions[2]
print('dimensions[0] = ', [column0, row0])
print('dimensions[1] = ', [column1, row1])
print('dimensions[2] = ', [column2, row2])
slide_level_downsamples = slide.level_downsamples[2]
print(slide_level_downsamples)
slide_downsamples = slide.get_best_level_for_downsample(20.0)
print(slide_downsamples)
slide_normal = numpy.array(slide.read_region((12000, 15500), 0, (500, 500)))
slide_gray = numpy.array(slide.read_region((12000, 15500), 0, (500, 500)).convert('L'))
After I run the code, the following image was obtained
python numpy opencv image-processing
add a comment |
I am trying to use Opencv in python to process digital pathology images. I convert the csv image into array and I want to convert the image to gray scale, here is my code:
start = time.time()
slide = openslide.open_slide("/Users/mihaoyang/Desktop/Pathology_Images/348980_case2_CD4.svs")
level_count = slide.level_count
print('level_count = ', level_count)
[column, row] = slide.dimensions
print('dimensions = ', column, row)
[column0, row0] = slide.level_dimensions[0]
[column1, row1] = slide.level_dimensions[1]
[column2, row2] = slide.level_dimensions[2]
print('dimensions[0] = ', [column0, row0])
print('dimensions[1] = ', [column1, row1])
print('dimensions[2] = ', [column2, row2])
slide_level_downsamples = slide.level_downsamples[2]
print(slide_level_downsamples)
slide_downsamples = slide.get_best_level_for_downsample(20.0)
print(slide_downsamples)
slide_normal = numpy.array(slide.read_region((12000, 15500), 0, (500, 500)))
slide_gray = numpy.array(slide.read_region((12000, 15500), 0, (500, 500)).convert('L'))
After I run the code, the following image was obtained
python numpy opencv image-processing
2
What's the problem? And the code you show doesn't actually save an image as far as I can see. Nor does it contain the necessaryimport
statements so it can't be run.
– Mark Setchell
Jan 3 at 8:03
add a comment |
I am trying to use Opencv in python to process digital pathology images. I convert the csv image into array and I want to convert the image to gray scale, here is my code:
start = time.time()
slide = openslide.open_slide("/Users/mihaoyang/Desktop/Pathology_Images/348980_case2_CD4.svs")
level_count = slide.level_count
print('level_count = ', level_count)
[column, row] = slide.dimensions
print('dimensions = ', column, row)
[column0, row0] = slide.level_dimensions[0]
[column1, row1] = slide.level_dimensions[1]
[column2, row2] = slide.level_dimensions[2]
print('dimensions[0] = ', [column0, row0])
print('dimensions[1] = ', [column1, row1])
print('dimensions[2] = ', [column2, row2])
slide_level_downsamples = slide.level_downsamples[2]
print(slide_level_downsamples)
slide_downsamples = slide.get_best_level_for_downsample(20.0)
print(slide_downsamples)
slide_normal = numpy.array(slide.read_region((12000, 15500), 0, (500, 500)))
slide_gray = numpy.array(slide.read_region((12000, 15500), 0, (500, 500)).convert('L'))
After I run the code, the following image was obtained
python numpy opencv image-processing
I am trying to use Opencv in python to process digital pathology images. I convert the csv image into array and I want to convert the image to gray scale, here is my code:
start = time.time()
slide = openslide.open_slide("/Users/mihaoyang/Desktop/Pathology_Images/348980_case2_CD4.svs")
level_count = slide.level_count
print('level_count = ', level_count)
[column, row] = slide.dimensions
print('dimensions = ', column, row)
[column0, row0] = slide.level_dimensions[0]
[column1, row1] = slide.level_dimensions[1]
[column2, row2] = slide.level_dimensions[2]
print('dimensions[0] = ', [column0, row0])
print('dimensions[1] = ', [column1, row1])
print('dimensions[2] = ', [column2, row2])
slide_level_downsamples = slide.level_downsamples[2]
print(slide_level_downsamples)
slide_downsamples = slide.get_best_level_for_downsample(20.0)
print(slide_downsamples)
slide_normal = numpy.array(slide.read_region((12000, 15500), 0, (500, 500)))
slide_gray = numpy.array(slide.read_region((12000, 15500), 0, (500, 500)).convert('L'))
After I run the code, the following image was obtained
python numpy opencv image-processing
python numpy opencv image-processing
asked Jan 3 at 6:19


HAOYANG MIHAOYANG MI
557
557
2
What's the problem? And the code you show doesn't actually save an image as far as I can see. Nor does it contain the necessaryimport
statements so it can't be run.
– Mark Setchell
Jan 3 at 8:03
add a comment |
2
What's the problem? And the code you show doesn't actually save an image as far as I can see. Nor does it contain the necessaryimport
statements so it can't be run.
– Mark Setchell
Jan 3 at 8:03
2
2
What's the problem? And the code you show doesn't actually save an image as far as I can see. Nor does it contain the necessary
import
statements so it can't be run.– Mark Setchell
Jan 3 at 8:03
What's the problem? And the code you show doesn't actually save an image as far as I can see. Nor does it contain the necessary
import
statements so it can't be run.– Mark Setchell
Jan 3 at 8:03
add a comment |
1 Answer
1
active
oldest
votes
Assuming you are using MatPlotLib to plot the image it looks like it is viridis
colormap check them out here. If you want to change the colormap to gray scale pass gray
into plt.imshow()
.
i.e.
plt.figure()
plt.imshow(slide_gray, 'gray')
plt.show()
If you're not using matplotlib then that will still be your problem so check out the image plotting library documentation for changing colormaps.
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%2f54017231%2fcolor-display-abnormal-after-gray-scaling-using-opencv-in-python%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
Assuming you are using MatPlotLib to plot the image it looks like it is viridis
colormap check them out here. If you want to change the colormap to gray scale pass gray
into plt.imshow()
.
i.e.
plt.figure()
plt.imshow(slide_gray, 'gray')
plt.show()
If you're not using matplotlib then that will still be your problem so check out the image plotting library documentation for changing colormaps.
add a comment |
Assuming you are using MatPlotLib to plot the image it looks like it is viridis
colormap check them out here. If you want to change the colormap to gray scale pass gray
into plt.imshow()
.
i.e.
plt.figure()
plt.imshow(slide_gray, 'gray')
plt.show()
If you're not using matplotlib then that will still be your problem so check out the image plotting library documentation for changing colormaps.
add a comment |
Assuming you are using MatPlotLib to plot the image it looks like it is viridis
colormap check them out here. If you want to change the colormap to gray scale pass gray
into plt.imshow()
.
i.e.
plt.figure()
plt.imshow(slide_gray, 'gray')
plt.show()
If you're not using matplotlib then that will still be your problem so check out the image plotting library documentation for changing colormaps.
Assuming you are using MatPlotLib to plot the image it looks like it is viridis
colormap check them out here. If you want to change the colormap to gray scale pass gray
into plt.imshow()
.
i.e.
plt.figure()
plt.imshow(slide_gray, 'gray')
plt.show()
If you're not using matplotlib then that will still be your problem so check out the image plotting library documentation for changing colormaps.
answered Jan 3 at 14:13
D.GriffithsD.Griffiths
7461317
7461317
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%2f54017231%2fcolor-display-abnormal-after-gray-scaling-using-opencv-in-python%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
2
What's the problem? And the code you show doesn't actually save an image as far as I can see. Nor does it contain the necessary
import
statements so it can't be run.– Mark Setchell
Jan 3 at 8:03