回答編集履歴
1
文言修正
test
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
[前の質問](https://teratail.com/questions/317077#reply-441512)
|
1
|
+
[前の質問](https://teratail.com/questions/317077#reply-441512)でも書きましたが`cv::imread()`の第2引数を省略して(デフォルト引数の`IMREAD_COLOR`により)3channel BGRとして読み込んでいるのですからアルファチャンネルがないのは当然です。
|
2
2
|
|
3
|
-
でも書きましたが`cv::imread`の第2引数を省略して3channel BGRとして読み込んでいるのですからアルファチャンネルがないのは当然です。
|
4
|
-
|
5
|
-
[`IMREAD_UNCHANGED`](https://docs.opencv.org/4.5.1/d8/d6a/group__imgcodecs__flags.html#ga61d9b0126a3e57d9277ac48327799c80)を指定してください。
|
3
|
+
アルファチャンネルも読み込みたいのであれば[`IMREAD_UNCHANGED`](https://docs.opencv.org/4.5.1/d8/d6a/group__imgcodecs__flags.html#ga61d9b0126a3e57d9277ac48327799c80)を指定してください。
|
6
4
|
|
7
5
|
|Enumerator||
|
8
6
|
|
9
7
|
|:--|:--|
|
10
8
|
|
9
|
+
|IMREAD_COLOR|If set, always convert image to the 3 channel BGR color image.|
|
10
|
+
|
11
11
|
|IMREAD_UNCHANGED|If set, return the loaded image as is (with alpha channel, otherwise it gets cropped). Ignore EXIF orientation.|
|