Skip to content

Bug in relative pose estimation? #145

@MarkYu98

Description

@MarkYu98

In utils.py L292:

f_mean = np.mean([K0[0, 0], K1[1, 1], K0[0, 0], K1[1, 1]])

f_mean = np.mean([K0[0, 0], K1[1, 1], K0[0, 0], K1[1, 1]])

Shouldn't it be

f_mean = np.mean([K0[0, 0], K0[1, 1], K1[0, 0], K1[1, 1]])?

Though it might not cause any noticeable difference since most cameras have similar fx and fy :)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions