What kind of insect it this?
创建于:2025年6月18日
创建于:2025年6月18日
pythonfrom PIL import Image import matplotlib.pyplot as plt img = Image.open('/mnt/data/微信图片_2025-06-18_080939_253.jpg') plt.imshow(img) plt.axis('off') (-0.5, 1278.5, 1705.5, -0.5)
pythonplt.figure(figsize=(4,4)) # crop approximate center area w, h = img.size crop = img.crop((w*0.3, h*0.35, w*0.7, h*0.6)) plt.imshow(crop) plt.axis('off') (-0.5, 510.5, 426.5, -0.5)
pythonplt.figure(figsize=(4,4)) crop2 = img.crop((w*0.35, h*0.4, w*0.6, h*0.55)) plt.imshow(crop2) plt.axis('off') (-0.5, 318.5, 255.5, -0.5)
That looks like a long-horned beetle (family Cerambycidae), most likely the Asian long-horned beetle Anoplophora glabripennis. Key features visible in your photo:
Field mark | What you can see |
---|---|
Glossy black body with irregular white dots | The elytra (wing-covers) are sprinkled with many white, roughly round spots. |
Very long antennae, banded black-and-white | Each antenna is longer than the beetle’s body and has alternating pale and dark segments. |
Robust size & shape | Adults are usually 2–3 cm long and fairly chunky, matching the proportions in the image. |
The Asian long-horned beetle is a wood-boring species whose larvae tunnel deep into hardwood trees (maple, poplar, willow, citrus, etc.). In its native East Asia it’s just part of the ecosystem, but when transported to other regions it can be a serious invasive pest, killing trees and prompting eradication campaigns. If you spotted this outside its native range, local agriculture or forestry agencies usually want to know.
Let me know where you found it if you’d like more specific advice on reporting or on keeping your trees safe!