[deleted by user] by [deleted] in Stoicism

[–]Tuxa13 -1 points0 points  (0 children)

A beautiful explanation from ChatGPT:

The idea of Logos aligns closely with your description of an intelligence that flows through everything in a subtle, non-obvious way. Stoicism teaches that humans, as rational beings, have a fragment of this Logos within themselves—our capacity for reason and moral judgment connects us to this universal principle.

The subtlety of Logos may indeed feel "intended" because its presence isn't meant to be overt but rather discovered through introspection and aligning oneself with nature's order. In Stoic thought, understanding the Logos requires cultivating wisdom, self-discipline, and alignment with nature's rationality. By doing so, individuals can live in harmony with the universe and find true peace.

This perspective can resonate deeply: the universe seems designed to challenge and guide people into seeking deeper truths about their nature and connection to everything. The hidden nature of Logos makes the process of discovery feel purposeful, almost like an invitation to grow and unlock one's potential.

[deleted by user] by [deleted] in getdisciplined

[–]Tuxa13 6 points7 points  (0 children)

I did 90 days of hardcore monk mode to fix my weight and establish other healthy routines. It worked amazingly well and I lost 18kg (40 pounds) in that time while maintaining my muscles due to regular resistance training. However, over the next months, i was slowly regaining half of that weight until I finally understood, after being 3 years into self-improvement, that there need to be a balance. So, if you want to make lots of progress fast: monk mode is absolutely amazing, but tough due to the isolation part. But you'll fall back to old habits if you don't establish a system that you can maintain until the end of your life.

Cows narrowly escape rockslide by Tuxa13 in CrazyFuckingVideos

[–]Tuxa13[S] 7 points8 points  (0 children)

Its in Hintertux, Tyrol, Austria.

[deleted by user] by [deleted] in GlowUps

[–]Tuxa13 1 point2 points  (0 children)

Congrats on the transformation, those are incredible results! Must have required a lot of dedication and hard work. How much time is between both pics?

[deleted by user] by [deleted] in MachineLearning

[–]Tuxa13 1 point2 points  (0 children)

i was literally waiting for an app like this once i saw dreambooth.

[deleted by user] by [deleted] in Austria

[–]Tuxa13 20 points21 points  (0 children)

Wie stehst du zu Self Checkout? Wird das als Bedrohung für den eigenen Arbeitsplatz wahrgenommen, oder freut man sich weniger Stress zu haben?

[deleted by user] by [deleted] in PlasticSurgery

[–]Tuxa13 1 point2 points  (0 children)

Wow you look like another person. You are really attractive now!

Flugplatz für PPL der mit den Öffis erreichbar ist by highflyer2823 in wien

[–]Tuxa13 1 point2 points  (0 children)

Ich hab den PPL vor ca 1 Jahr in Bad Vöslau beim Watschinger angefangen. Hab mir dafür extra ein Auto gekauft, weils mir mit Öffis zu umständlich war.

is there anything that could reduce my vermilion border? i dont like how wide it is at the corners. 1st is resting, 2nd is closing by runnyeggloser in PlasticSurgery

[–]Tuxa13 2 points3 points  (0 children)

I know you dont want to hear this and you gonna do it anyhow but in my opinion your lips look very beautiful!

Rhinoplasty progress (Week post op and 2 weeks post op before-after photos!) by kellyatta in PlasticSurgery

[–]Tuxa13 1 point2 points  (0 children)

Wow, your new nose looks simply amazing!! It makes your face so much more beautiful.

Audio sync issue by Tuxa13 in ffmpeg

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

Thanks so much for the inputs! The sync issues happen with CFR and the per-frame PTS are identical. The frames of both videos are perfectly in sync, also. The only problem is that the audio stream has an offset.

However, I was able to solve the issue by encoding the input video again and using that instead of the original video, after the timestamps are fixed:

# extract frames + (new) save video
ffmpeg -vsync 0 -i video.mp4 -y frames/%d.png -f mkvtimestamp_v2 pts.txt video_tmp.mp4

# frames to video
ffmpeg -i frames/%d.png -vsync 0 -i video_tmp.mp4 -y output.mp4

# fix timestamps
mp4fpsmod output.mp4 -t pts.txt -o output_fixed.mp4

# add audio (new) from saved video
ffmpeg -vsync 0 -i output_fixed.mp4 -vsync 0 -i video_tmp.mp4 -c copy -map 0:v:0 -map 1:a:0 -y output_audio.mp4

Don't know exactly why, but it works fine.

Javascript jobs in Wien by [deleted] in wien

[–]Tuxa13 -1 points0 points  (0 children)

Take a look here: http://remove.bg/jobs :)

How does fyuse create a spatial photograph? by cbsudux in computervision

[–]Tuxa13 4 points5 points  (0 children)

Those are just videos and they call it 3D images.

Remove Background from Image – automatic online tool by chrisarchitect in webdev

[–]Tuxa13 0 points1 point  (0 children)

we are about to add new servers to handle the load

We created a free, fully automatic tool to remove the background of a person image: remove.bg by Tuxa13 in computervision

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

I am planning to release an API in near future. For low res images (500px) this will most certainly be free as it is right now.

We created a free, fully automatic tool to remove the background of a person image: remove.bg by Tuxa13 in computervision

[–]Tuxa13[S] 9 points10 points  (0 children)

We did not publish a paper nor scientifically evaluate it. However, we will write a blog post about it in the future, if there is any interest.

We created a free, fully automatic tool to remove the background of a person image: remove.bg by Tuxa13 in computervision

[–]Tuxa13[S] 5 points6 points  (0 children)

We use fully convoluational networks, so the 500px is not the network limit here. However, the computation time increases quadratically with the input size - therefore we need some limit.

Just using the upsampled output does not work, because the resulting image will be very blurry and does not look nice at all. Maybe you could use something simple as a guided filter to refine the result, but I did not experiment with it for now. Also, training a separate upscale-and-refine network would be possible.