You must be logged in to post messages.
Please login or register

EE General Forum
Moderated by Soty, Philla007

Hop to:    
loginhomeregisterhelprules
Bottom
Topic Subject: Guide: Empire Earth 1 on Linux

Implement an automatic outlier detection and removal algorithm to improve the robustness of the mesh registration process.

def remove_outliers(points, outliers): return points[~outliers]

def detect_outliers(points, threshold=3): mean = np.mean(points, axis=0) std_dev = np.std(points, axis=0) distances = np.linalg.norm(points - mean, axis=1) outliers = distances > (mean + threshold * std_dev) return outliers

# Register mesh using cleaned vertices registered_mesh = mesh_registration(mesh, cleaned_vertices) This is a simplified example to illustrate the concept. You can refine and optimize the algorithm to suit your specific use case and requirements.

Meshcam Registration Code May 2026

Implement an automatic outlier detection and removal algorithm to improve the robustness of the mesh registration process.

def remove_outliers(points, outliers): return points[~outliers] Meshcam Registration Code

def detect_outliers(points, threshold=3): mean = np.mean(points, axis=0) std_dev = np.std(points, axis=0) distances = np.linalg.norm(points - mean, axis=1) outliers = distances > (mean + threshold * std_dev) return outliers threshold=3): mean = np.mean(points

# Register mesh using cleaned vertices registered_mesh = mesh_registration(mesh, cleaned_vertices) This is a simplified example to illustrate the concept. You can refine and optimize the algorithm to suit your specific use case and requirements. axis=0) std_dev = np.std(points

Meshcam Registration Code posted 09-16-25 02:51 PM EDT (US)     1 / 2  
Thank you so much for this guide!
I will pin it so people who play Empire Earth on Linux will see it.

EMPIRE EARTH: REBORN
Site link: https://empireearth.eu[url]Discord link: [url]https://discord.gg/BjUXbFB
GitHub page: https://github.com/EE-modders
Email: philjohncolt45@gmail.com[/url][/url]
Meshcam Registration Code posted 09-26-25 12:46 PM EDT (US)     2 / 2  
You are very welcome!
I just edited the post for people who may want to use Wine instead of Proton.
For players who do not hear the music in-game I have also added to this guide the command
winetricks directmusic
Empire Earth Heaven » Forums » EE General Forum » Guide: Empire Earth 1 on Linux
Top
You must be logged in to post messages.
Please login or register
Hop to:    
Empire Earth Heaven | HeavenGames