-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
187 lines (163 loc) · 5.64 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
//stereogram.cpp
/*----------------------------------------------------------------------------------*
* 立体視画像を作成するプログラム
* GUIはないので注意。コマンドとして使う。
* 書式
* stereogram サイズ 入力ファイル 出力ファイル
* stereogram -h
*----------------------------------------------------------------------------------*/
#define MARGIN 50 //余白の幅
#define RZURE 3 //立体部のずれ(ピクセル)
#define COLORSIZE 3 //入力画像の1ピクセル当たりのサイズ(byte)
#include <cstdio>
#include <cstring>
#include <stdlib.h>
#include <errno.h>
#include <time.h>
//プロトタイプ宣言
bool getsize(int *size, char *str);
void view(unsigned char *image, int width, int height, int colorsize);
//ヘルプを表示する
void help(){
printf("===使い方===\n"
"stereogram サイズ 入力ファイル 出力ファイル\n"
"サイズ\t: 入力画像ファイルの画像サイズ 横x縦\n"
"\t 例) 100x200\n"
"入力ファイル\t: 入力画像ファイル名(raw画像のみ対応)\n"
"\t 色はRGBの3バイトにしてください。黒の部分(R=0)が立体部となります。\n"
"出力ファイル\t: 出力ファイル名(形式はraw画像、色はRGBの3バイト)\n"
"\t サイズ x 2枚 + マージン の大きさの画像が出力されます。\n"
"===ヘルプ表示===\n"
"stereogram -h \t でヘルプを表示できます。\n"
);
}
//メイン関数
int main(int argc, char *argv[])
{
char *inputfilename, *outputfilename;
int width, height;
FILE *fp;
//乱数初期化
srand( time(NULL) );
//引数チェック
if(argc != 4){ //引数がおかしいとき
if( argc == 2 && !strcmp(argv[1], "-h") ){
help(); //ヘルプ表示
return 0;
}
printf("エラー:引数が少ない、または多いです。\n"); //エラー表示
printf("ヘルプ : stereogram -h\n");
return 1; //エラー終了1
}
//サイズ取得
if( getsize(&width, strtok(argv[1], "x")) || //文字列をxで区切る
getsize(&height, strtok(NULL, "x")) ){
//どちらかでエラーが発生した場合
printf("サイズ取得でエラーを起こしました。1番目の引数を確認してください。\n");
return 2; //エラー終了2
}
//入力ファイル名取得
inputfilename = argv[2];
//出力ファイル名取得
outputfilename = argv[3];
printf("読み取り結果:\nサイズ 横%d 縦%d\n入力ファイル名%s\n", width, height, inputfilename);
//入力画像読み込み
int in_size = width * height * COLORSIZE;
unsigned char *source = new unsigned char[ in_size ]; //バッファ作成
if ((fp = fopen(inputfilename, "rb")) != NULL) {
fread(source, in_size, 1, fp);
fclose(fp);
}
else {
printf("%sが開けませんでした。", inputfilename);
return 3; //エラー終了3
}
view(source, width, height, COLORSIZE);
//画像用配列作成
const int maxwidth = width*2 + MARGIN * 3; //作成される画像の幅
const int maxheight = height + MARGIN * 2; //作成される画像の高さ
int out_size = maxwidth * maxheight * 3;
unsigned char *output = new unsigned char[ out_size ];
for( int i=0; i < out_size; i++ ){
output[i] = 0; //初期化
}
//背景作成
const int offset = MARGIN * maxwidth + MARGIN; //左画像の左上位置
const int pairpos = width + MARGIN; //隣の対応する点までの距離
int pos; //操作点の位置
for(int y=0; y < height; y++ ){
for(int x=0; x < width; x++ ){
pos = offset + y * maxwidth + x; //操作点
output[ pos * 3 ] = output[ (pairpos + pos) * 3 ] = (char)(rand()%256); //赤
output[ pos * 3 +1] = output[ (pairpos + pos) * 3 +1] = (char)(rand()%256); //緑
output[ pos * 3 +2] = output[ (pairpos + pos) * 3 +2] = (char)(rand()%256); //青
}
}
//浮き出るものの作成
for(int y=0; y < height; y++ ){
for(int x=0; x < width; x++ ){
//判定
if( source[ (y * width + x) * COLORSIZE ] == 0 ){
pos = offset + y * maxwidth + x; //操作点
output[ (pos + RZURE) * 3 ] = output[ (pairpos + pos - RZURE) * 3 ] = (char)(rand()%256); //赤
output[ (pos + RZURE) * 3 +1] = output[ (pairpos + pos - RZURE) * 3 +1] = (char)(rand()%256); //緑
output[ (pos + RZURE) * 3 +2] = output[ (pairpos + pos - RZURE) * 3 +2] = (char)(rand()%256); //青
}
}
}
//ファイルに書き出し
if( (fp = fopen( outputfilename, "wb" )) != NULL ){
fwrite(output, out_size, 1, fp);
fclose(fp);
}else{
printf("%sを作成または開くことができませんでした。", outputfilename);
return 4; //エラー終了4
}
//終了通知
printf("%dx%dの画像を作成しました。\n", maxwidth, maxheight);
// view(output, maxwidth, maxheight, 3);
//後処理
delete [] source;
delete [] output;
return 0;
}
//サイズ取得に使用
bool getsize(int *size, char *str){
char *check;
//文字列がNULLならエラー
if( str == NULL ) return true;
//文字列を整数に変換
*size = strtol(str, &check, 10);
if ( errno == ERANGE ){
perror( "長整数の範囲を超えました。" );
return true;
}
else if ( *check != '\0' ){
perror( "数字文字列ではありません。" );
return true;
}
if( *size >= 10000 ){
perror( "デカすぎでしょう。" );
return true;
}
if( *size <= 0 ){
perror( "サイズが0またはマイナスです。" );
return true;
}
return false;
}
//簡易表示
void view(unsigned char *image, int width, int height, int colorsize)
{
for(int y=3; y < height; y+=5 ){
for(int x=3; x < width; x+=5 ){
//判定
if( image[ (y * width + x) * colorsize ] == 0 ){
putchar('*');
}else{
putchar(' ');
}
}
putchar('\n');
}
}