import math
import sensor
import struct
import time
import machine
UART_BAUDRATE = 115200
MAV_system_id = 1
MAV_component_id = 0x54
packet_sequence = 0
lens_mm = 2.8
lens_to_camera_mm = 22
sensor_w_mm = 4.592
sensor_h_mm = 3.423
valid_tag_ids = {
0: 165,
1: 165,
2: 165,
}
sensor.reset()
sensor.set_pixformat(sensor.GRAYSCALE)
sensor.set_framesize(sensor.QQVGA)
sensor.skip_frames(time=2000)
x_res = 160
y_res = 120
f_x = (lens_mm / sensor_w_mm) * x_res
f_y = (lens_mm / sensor_h_mm) * y_res
c_x = x_res / 2
c_y = y_res / 2
h_fov = 2 * math.atan((sensor_w_mm / 2) / lens_mm)
v_fov = 2 * math.atan((sensor_h_mm / 2) / lens_mm)
def translation_to_mm(translation, tag_size):
return ((translation * 100) * tag_size) / 210
uart = machine.UART(3, UART_BAUDRATE, timeout_char=1000)
def checksum(data, extra):
output = 0xFFFF
for i in range(len(data)):
tmp = data[i] ^ (output & 0xFF)
tmp = (tmp ^ (tmp << 4)) & 0xFF
output = ((output >> 8) ^ (tmp << 8) ^ (tmp << 3) ^ (tmp >> 4)) & 0xFFFF
tmp = extra ^ (output & 0xFF)
tmp = (tmp ^ (tmp << 4)) & 0xFF
output = ((output >> 8) ^ (tmp << 8) ^ (tmp << 3) ^ (tmp >> 4)) & 0xFFFF
return output
MAV_LANDING_TARGET_message_id = 149
MAV_LANDING_TARGET_min_distance = 1 / 100
MAV_LANDING_TARGET_max_distance = 10000 / 100
MAV_LANDING_TARGET_frame = 8
MAV_LANDING_TARGET_extra_crc = 200
def send_landing_target_packet(tag, dist_mm, w, h):
global packet_sequence
temp = struct.pack(
"<qfffffbb",
0,
((tag.cx() / w) - 0.5) * h_fov,
((tag.cy() / h) - 0.5) * v_fov,
min(
max(dist_mm * 0.001, MAV_LANDING_TARGET_min_distance),
MAV_LANDING_TARGET_max_distance,
),
0.0,
0.0,
0,
MAV_LANDING_TARGET_frame,
)
temp = struct.pack(
"<bbbbb30s",
30,
packet_sequence & 0xFF,
MAV_system_id,
MAV_component_id,
MAV_LANDING_TARGET_message_id,
temp,
)
temp = struct.pack(
"<b35sh", 0xFE, temp, checksum(temp, MAV_LANDING_TARGET_extra_crc)
)
packet_sequence += 1
uart.write(temp)
led_success = machine.LED("LED_GREEN")
led_fail = machine.LED("LED_RED")
led_counter = 0
def update_led(target_found):
global led_counter
if target_found:
led = led_success
led_fail.off()
else:
led = led_fail
led_success.off()
if led_counter % 4 == 0:
led.toggle()
led_counter += 1
clock = time.clock()
while True:
clock.tick()
img = sensor.snapshot()
tags = sorted(
img.find_apriltags(fx=f_x, fy=f_y, cx=c_x, cy=c_y),
key=lambda x: x.w() * x.h(),
reverse=True,
)
target_found = False
if tags and (tags[0].id() in valid_tag_ids):
target_found = True
tag_size = valid_tag_ids[tags[0].id()]
dist_mm = math.sqrt(
translation_to_mm(tags[0].x_translation(), tag_size) ** 2
+ translation_to_mm(tags[0].y_translation(), tag_size) ** 2
+ translation_to_mm(tags[0].z_translation(), tag_size) ** 2
)
send_landing_target_packet(tags[0], dist_mm, img.width(), img.height())
img.draw_rectangle(tags[0].rect())
img.draw_cross(tags[0].cx(), tags[0].cy())
print("Distance %f mm - FPS %f" % (dist_mm, clock.fps()))
else:
print("FPS %f" % clock.fps())
update_led(target_found)
星瞳科技OpenMV官方中文文档函数讲解: