|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- // Tencent is pleased to support the open source community by making ncnn available.
- //
- // Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved.
- //
- // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
- // in compliance with the License. You may obtain a copy of the License at
- //
- // https://opensource.org/licenses/BSD-3-Clause
- //
- // Unless required by applicable law or agreed to in writing, software distributed
- // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
- // CONDITIONS OF ANY KIND, either express or implied. See the License for the
- // specific language governing permissions and limitations under the License.
-
- #include "opencv.h"
-
- #if NCNN_OPENCV
-
- #include <stdio.h>
-
- namespace cv {
-
- Mat imread(const std::string& path, int flags)
- {
- (void)flags;
-
- // read pgm/ppm
- FILE* fp = fopen(path.c_str(), "rb");
- if (!fp)
- return Mat();
-
- Mat m;
-
- char magic[3];
- int w, h;
- int nscan = fscanf(fp, "%2s\n%d %d\n255\n", magic, &w, &h);
- if (nscan == 3 && magic[0] == 'P' && (magic[1] == '5' || magic[1] == '6'))
- {
- if (magic[1] == '5')
- {
- m.create(h, w, CV_8UC1);
- }
- else if (magic[1] == '6')
- {
- m.create(h, w, CV_8UC3);
- }
- if (m.empty())
- {
- fclose(fp);
- return Mat();
- }
-
- fread(m.data, 1, m.total(), fp);
- }
-
- fclose(fp);
-
- return m;
- }
-
- void imwrite(const std::string& path, const Mat& m)
- {
- // write pgm/ppm
- FILE* fp = fopen(path.c_str(), "wb");
- if (!fp)
- return;
-
- if (m.channels() == 1)
- {
- fprintf(fp, "P5\n%d %d\n255\n", m.cols, m.rows);
- }
- else if (m.channels() == 3)
- {
- fprintf(fp, "P6\n%d %d\n255\n", m.cols, m.rows);
- }
-
- fwrite(m.data, 1, m.total(), fp);
-
- fclose(fp);
- }
-
- #if NCNN_PIXEL
- void resize(const Mat& src, Mat& dst, const Size& size, float sw, float sh, int flags)
- {
- int srcw = src.cols;
- int srch = src.rows;
-
- int w = size.width;
- int h = size.height;
-
- if (w == 0 || h == 0)
- {
- w = srcw * sw;
- h = srch * sh;
- }
-
- if (w == 0 || h == 0)
- return;
-
- if (w == srcw && h == srch)
- {
- dst = src.clone();
- return;
- }
-
- cv::Mat tmp(h, w, src.c);
- if (tmp.empty())
- return;
-
- if (src.c == 1)
- ncnn::resize_bilinear_c1(src.data, srcw, srch, tmp.data, w, h);
- else if (src.c == 3)
- ncnn::resize_bilinear_c3(src.data, srcw, srch, tmp.data, w, h);
- else if (src.c == 4)
- ncnn::resize_bilinear_c4(src.data, srcw, srch, tmp.data, w, h);
-
- dst = tmp;
- }
- #endif // NCNN_PIXEL
-
- } // namespace cv
-
- #endif // NCNN_OPENCV
|