blob: f4f20032018f4314a73e104385a7665b61886a2a [file] [log] [blame]
Gian Marco Iodicec4124b52017-10-11 13:12:34 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
25#include "arm_compute/runtime/NEON/NEFunctions.h"
26
27#include "arm_compute/core/Types.h"
28#include "utils/Utils.h"
29
30using namespace arm_compute;
31using namespace utils;
32
33void main_neon_cartoon_effect(int argc, const char **argv)
34{
35 // Open PPM file
36 PPMLoader ppm;
37 Image src_img;
38 Image dst_img;
39 Image gaus5x5_img;
40 Image canny_edge_img;
41
42 if(argc < 2)
43 {
44 // Print help
45 std::cout << "Usage: ./build/neon_cartoon_effect [input_image.ppm]\n\n";
46 std::cout << "No input_image provided, creating a dummy 640x480 image\n";
47 // Create an empty grayscale 640x480 image
48 src_img.allocator()->init(TensorInfo(640, 480, Format::U8));
49 }
50 else
51 {
52 ppm.open(argv[1]);
53 ppm.init_image(src_img, Format::U8);
54 }
55
56 // Initialize just the dimensions and format of the images:
57 gaus5x5_img.allocator()->init(*src_img.info());
58 canny_edge_img.allocator()->init(*src_img.info());
59 dst_img.allocator()->init(*src_img.info());
60
61 NEGaussian5x5 gaus5x5;
62 NECannyEdge canny_edge;
63 NEArithmeticSubtraction sub;
64
65 // Configure the functions to call
66 gaus5x5.configure(&src_img, &gaus5x5_img, BorderMode::REPLICATE);
67 canny_edge.configure(&src_img, &canny_edge_img, 100, 80, 3, 1, BorderMode::REPLICATE);
68 sub.configure(&gaus5x5_img, &canny_edge_img, &dst_img, ConvertPolicy::SATURATE);
69
70 // Now that the padding requirements are known we can allocate the images:
71 src_img.allocator()->allocate();
72 dst_img.allocator()->allocate();
73 gaus5x5_img.allocator()->allocate();
74 canny_edge_img.allocator()->allocate();
75
76 // Fill the input image with the content of the PPM image if a filename was provided:
77 if(ppm.is_open())
78 {
79 ppm.fill_image(src_img);
80 }
81
82 // Execute the functions:
83 gaus5x5.run();
84 canny_edge.run();
85 sub.run();
86
87 // Save the result to file:
88 if(ppm.is_open())
89 {
90 const std::string output_filename = std::string(argv[1]) + "_out.ppm";
91 save_to_ppm(dst_img, output_filename);
92 }
93}
94
95/** Main program for cartoon effect test
96 *
97 * @param[in] argc Number of arguments
98 * @param[in] argv Arguments ( [optional] Path to PPM image to process )
99 */
100int main(int argc, const char **argv)
101{
102 return utils::run_example(argc, argv, main_neon_cartoon_effect);
103}