import { matrix_t } from "../matrix_t/matrix_t";
import { point_t } from "../point_t/point_t";
export class fast_corners {
    set_threshold(threshold: number): number {
        throw new Error("Method not implemented.");
    }
    detect(src: matrix_t, corners: point_t[], border: number): number {
        throw new Error("Method not implemented.");
    }
}
