Forum

Recent Posts

Pages: [1] 2 3 ... 10
1
General / Re: Import Video
« Last post by luisSeyfer on Today at 05:21:09 PM »
Tank you very much!
2
Добрый день!

Столкнулся с проблеймой плохих масок.
Мои маски на ростовом сканере исключают некоторые tiepoints у сканируемого человека, из-за чего 3Д-модель собирается с дырками.

Есть одно решение - вычислить заранее регион и использовать его. Но в последнее время экспериментирую с маркерами, а когда каждый раз позиция маркеров вычисляется заново, регион слетает.

В общем, мне кажется хорошим решением было бы пока отказаться от не очень качественных масок, если бы можно было ислючить tiepoints вокруг камер в радиусе N и за камерами.

Такое возможно в metashape?
3
General / Re: Model Texture oddities
« Last post by RobertMarshall on Today at 03:25:29 PM »
I'm going to be redoing the textures for this mesh over the weekend, am confident ghost filtering was enabled, and yes some oblique photography is included in parts of the model, but the area were these unexpected textures are appearing are from nadir photography. Thanks for the reply.
4
Other Languages / Re: Insta 360
« Last post by Alexey Pasumansky on Today at 01:34:30 PM »
Максим, посмотрите ролики на канале Григория Кулько:
https://www.youtube.com/watch?v=qNgLpQq8aJ4
https://www.youtube.com/watch?v=lYLdQ0tpcQg
5
Other Languages / Insta 360
« Last post by ZaharovMaxim on Today at 11:01:14 AM »
Добрый день.
Подскажите видеоролик по обработке таких данных. Я так понимаю надо сначала резать вручную кадры на передний и задний снимок...
6
Python and Java API / Re: Model vertex coordinate to camera frame
« Last post by SamT on Today at 12:49:27 AM »
Never mind.

camera.project() works as expected, I had a bug elsewhere in my code computing occlusion.
7
Python and Java API / Re: Model vertex coordinate to camera frame
« Last post by Alexey Pasumansky on April 18, 2024, 06:40:06 PM »
Hello SamT,

Can you give some additional details about the task? Do you have cameras with the spherical sensor type and would like to project the coordinates of the mesh vertices on them to get 2D image coordinates?
8
Python and Java API / Re: Metashape model.pickPoint issue in version 2.1
« Last post by Alexey Pasumansky on April 18, 2024, 06:38:16 PM »
Hello Fabio,

Can you please share the Console pane output related to the following code execution:

Code: [Select]
for i in range(10):
    p = chunk.model.pickPoint(camera.center, camera.transform.mulp(sensor.calibration.unproject(Metashape.Vector([i*100,i*100]))))
    print(p)
providing that chunk, camera and sensor are properly defined.

Additionally please specify the number of faces in the model.
9
General / Re: Import Video
« Last post by Alexey Pasumansky on April 18, 2024, 05:36:56 PM »
Hello luisSeyfer,

Thank you for sharing the sample files.

It seems that the problem is caused by pulseaudio package. For example, described in the following discussion thread: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1477

For a fix we can suggest to add GST_PLUGIN_FEATURE_RANK=pulsesink:NONE line to metashape.sh script, so that it look as following:

Code: [Select]
#!/bin/sh
appname=`basename "$0" | sed s,\.sh$,,`
dirname=`dirname "$0"`
tmp="${dirname#?}"
if [ "${dirname%$tmp}" != "/" ]; then
dirname=$PWD/$dirname
fi
TCL_LIBRARY=$dirname/python/lib/tcl8.6
TK_LIBRARY=$dirname/python/lib/tk8.6
export TCL_LIBRARY
export TK_LIBRARY
LD_LIBRARY_PATH=$dirname/lib:$dirname/python/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH
GST_PLUGIN_FEATURE_RANK=pulsesink:NONE
export GST_PLUGIN_FEATURE_RANK
"$dirname/$appname" "$@"

It should fix the video import issue. Some warning messages could appear in the Console pane during the video import process, but you can ignore them.
10
General / Re: Diffuse Texture isn't "seamless" after Photoshop adjustments...?
« Last post by Bzuco on April 18, 2024, 10:03:53 AM »
It could be caused by lowered texture resolution for viewport(alt+B shortcut - viewport configuration - Viewport Images and Textures Display Resolution).
You can try select polygon on mesh which is in seam area and in unwrap UVW figure out what part on texture it is and in photoshop use eyedropper tool to check both color values on each side of the seam if they match. If not, then Shadows/Highlights is not working equally on the whole image.
Pages: [1] 2 3 ... 10