Vitis AIの構造を勉強してみる(2日目)

さて、ソフトウェアの中身を見ていこう。

どんな風にハードウェアを呼び出すのかな?

ソフトウェアの中身は?

ソフトウェアのソースコードはtest_jpeg_facedetect.cppを見ればよいということですね。

さっそく覗いてみました。

/*
 * Copyright 2019 Xilinx Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * 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 <glog/logging.h>

#include <iostream>
#include <memory>
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include <vitis/ai/demo.hpp>
#include <vitis/ai/facedetect.hpp>
#include <vitis/ai/nnpp/facedetect.hpp>

#include "./process_result.hpp"
using namespace std;
int main(int argc, char *argv[]) {
  string model = argv[1];
  return vitis::ai::main_for_jpeg_demo(
      argc, argv, [model] { return vitis::ai::FaceDetect::create(model); },
      process_result, 2);
}

すごく簡単でねぇ?

実機で実行したときが次のコマンドだったのでargv[1]densebox_320_320となる。

$ ./test_jpeg_facedetect densebox_320_320 sample_facedetect.jpg

処理自体はvitis::ai::main_for_jpeg_demo関数で完結しちゃってるってことですか?

vitis::ai::main_for_jpeg_demoはハードウェアってことでいいんですよね?

今日は簡単だったけど、ここでおしまいにして明日にしよう。

write: 2021/01/09/ 00:00:00