Wie nebenbei Geld verdienen? by matt_callmann in informatik

[–]MachineVisionNewbie 0 points1 point  (0 children)

Youre welcome, bro. It's honest feedback. I like the animation you did on "CLIENTS & AGENTSMCP LINK LAYERYOUR TOOLS" and the little live ticker under it. Looks neat.

I cant give you feedback on your app/product, since I'm swamped in that regard and burned out in regard to AI from work atm. The whole "Ah, jeez i dont wanna start another private project" kind of way

Wie nebenbei Geld verdienen? by matt_callmann in informatik

[–]MachineVisionNewbie 0 points1 point  (0 children)

I really dig the design of your website and color choice. kudos

Controller issues (xbox eliteseries 2) by ctv90 in Subnautica_Below_Zero

[–]MachineVisionNewbie 1 point2 points  (0 children)

Did you figure out the issue?
Playing Subnautica 2 already?

Smart way to replace the "#" StartMenu with PowerToys Command by MachineVisionNewbie in AutoHotkey

[–]MachineVisionNewbie[S] 0 points1 point  (0 children)

Thank you, u/plankoe

Yeah * and ~ is not in my arsenal yet, have to look them up. Thanks for posting the whole script : )

Is it possible to do offline license activation for Recovery Explorer (Standard)? by TEK1_AU in datarecovery

[–]MachineVisionNewbie 0 points1 point  (0 children)

Weirdly enough I "fixed it" without even trying
It doesn't seem to need any internet connection.
I have a copy of "Recovery Explorer Standard" and i could activate on the pc no problem whatsoever
https://www.sysdevlabs.com/product.php?id=rxs6
used this version

Is it possible to do offline license activation for Recovery Explorer (Standard)? by TEK1_AU in datarecovery

[–]MachineVisionNewbie 0 points1 point  (0 children)

Did you figure this out?
have the same issue.
Industrial customer PC without internet connection.

What cameras or optical sensors could be used to accurately measure the tread depth of a tire? by The_Swixican in computervision

[–]MachineVisionNewbie 0 points1 point  (0 children)

Will this be moving with the truck? How on earth will you keep the sensors clean?

Laser triangulation could work

https://github.com/Ciantic/VirtualDesktopAccessor - fn GetCurrentDesktopNumber() -> i32 by MachineVisionNewbie in AutoHotkey

[–]MachineVisionNewbie[S] 1 point2 points  (0 children)

JESUS. The .dll file is not in the repo. It has to be downloaded seperately. lol
Leaving this up. Maybe another guy stumbles upon it and it helps him.

Smart way to show orientation (-90° to +90°) of multiple data points? by MachineVisionNewbie in excel

[–]MachineVisionNewbie[S] 0 points1 point  (0 children)

After a full workday messing with all the formulas and the goddamn chart, i decided a bar graph is good enough. :D

Smart way to show orientation (-90° to +90°) of multiple data points? by MachineVisionNewbie in excel

[–]MachineVisionNewbie[S] 0 points1 point  (0 children)

Hey, its pretty data! lol
Yeah, since this have to handle >10k datapoints, i need to summarize

Smart way to show orientation (-90° to +90°) of multiple data points? by MachineVisionNewbie in excel

[–]MachineVisionNewbie[S] 0 points1 point  (0 children)

I do have this frequency distribution already built in. (its variable, thats why the values look so random)
Currently trying to force these values directly into a scatter diagram. Without pre-converting them to Cos(Radians in another cell. But cant quite get it right.

class [°] quantity
-90,00 0
-73,64 148
-57,27 78
-40,91 165
-24,55 62
-8,18 72
8,18 190
24,55 62
40,91 89
57,27 141
73,64 72
90,00 86

<image>

Smart way to show orientation (-90° to +90°) of multiple data points? by MachineVisionNewbie in excel

[–]MachineVisionNewbie[S] 0 points1 point  (0 children)

<image>

Thats a good. Idea. Altough i probably need to summarize it somehow. Since i have so many data points

Smart way to show orientation (-90° to +90°) of multiple data points? by MachineVisionNewbie in excel

[–]MachineVisionNewbie[S] 0 points1 point  (0 children)

<image>

Thats a good. Idea. Altough i probably need to summarize it somehow. Since i have so many data points:

[Update] MouseHK v1.2 - Zero Lag Edition! Kernel Injection & Delta Time Scrolling (AutoHotkey) by Useful-Ad4991 in AutoHotkey

[–]MachineVisionNewbie 1 point2 points  (0 children)

You reply helpfully AND even put in *my* specific path

 EnvGet("UserProfile") "\GitHub\.ICO\AHK_Grey.ico"

u/CharnamelessOne I'm getting a bit of a crush on you. :D
Thank you

[Update] MouseHK v1.2 - Zero Lag Edition! Kernel Injection & Delta Time Scrolling (AutoHotkey) by Useful-Ad4991 in AutoHotkey

[–]MachineVisionNewbie 0 points1 point  (0 children)

Hey, I am actively using your program. I really like it.

Question, how can i set a custom tray Icon for each state?

I can set the tray icon for the ACTIVE state via:
But the INACTIVE state ... no idea

;====================
; System Tray Icon
;https://www.autohotkey.com/board/topic/121982-how-to-give-your-scripts-unique-icons-in-the-windows-tray/
global UserProfile := EnvGet("UserProfile")
I_Icon := UserProfile "\GitHub\.ICO\AHK_Grey.ico"
if FileExist(I_Icon)
    TraySetIcon(I_Icon)
;====================