我不确定我是否正确理解什么是开源。我在这里搜索以找到答案,但没有找到有人问类似的问题。
如何在文件“ features.hpp”中看到“检测”功能的源代码。 我正在寻找算法ORB的数学计算。 所有人都想看吗?
为了更加准确并确保我已经足够清楚,您可以在“ objdetect.hpp”内部找到函数的声明(“ detect”)
谢谢
答案 0 :(得分:1)
在C ++中,函数实现通常用import { TestBed, async } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { AppComponent } from './app.component';
import { FormsModule } from '@angular/forms';
describe('AppComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
RouterTestingModule,
FormsModule
],
declarations: [
AppComponent
],
}).compileComponents();
}));
文件编写。 flow disable Cannot use `Component` [1] with less than 1 type argument.
或import React, { Component } from "react";
type Props = {};
class SomeComponent extends Component<Props> {...
文件是仅包含函数签名和类型声明的头文件。
ORB检测器的一个很好的起点是here。