为什么“cout”对于“unsigned char”来说很奇怪 [英] Why "cout" works weird for "unsigned char"?

查看:888
本文介绍了为什么“cout”对于“unsigned char”来说很奇怪的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码:

cvtColor (image, image, CV_BGRA2RGB);
Vec3b bottomRGB;
bottomRGB=image.at<Vec3b>(821,1232);


$ b <它显示的值大于255.这是什么原因?

When I display bottomRGB[0], it displays a value greater than 255. What is the reason for this?

推荐答案

正如你所评论的,原因是你使用 cout 直接打印其内容。在这里,我将尝试向您解释为什么这将无法工作。

As you have commented, the reason is that you use cout to print its content directly. Here I will try to explain to you why this will not work.

cout << bottomRGB[0] << endl;



为什么cout code>unsigned char?



无效,因为 bottomRGB [0] code>是 unsigned char (值 218 ), cout 实际上会打印一些垃圾值(或什么也没有),因为它只是一个不可打印的 ASCII字符无论如何。注意,对应于 218 的ASCII字符是不可打印的。请查看此处的ASCII表格。

Why "cout" works weird for "unsigned char"?

It will not work because here bottomRGB[0] is a unsigned char (with value 218), cout actually will print some garbage value (or nothing) as it is just a non-printable ASCII character which is getting printed anyway. Note that ASCII character corresponding to 218 is non-printable. Check out here for the ASCII table.

您可以使用 bottomRGB [0] 是否可打印rel =nofollow> isprint() as:

P.S. You can check whether bottomRGB[0] is printable or not using isprint() as:

cout << isprint(bottomRGB[0]) << endl; // will print garbage value or nothing

它将打印 0 (或 false )表示字符不可打印

It will print 0 (or false) indicating the character is non-printable

对于你的例子,为了使它工作,你需要在 cout 之前先键入它:

For your example, to make it work, you need to type cast it first before cout:

cout << (int) bottomRGB[0] << endl; // correctly printed (218 for your example) 

这篇关于为什么“cout”对于“unsigned char”来说很奇怪的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆