Forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Alexey Pasumansky

Pages: 1 ... 869 870 [871] 872 873 ... 990
13051
Hello mitchfx,

To apply the same mask file for the whole chunk or workspace you just need to use static template in the corresponding field of the Import Masks dialog:



Applying masks to the custom selection via GUI is not yet possible in the actual release.

13052
General / Re: Problem with orthophoto seamlines!!
« on: May 28, 2014, 02:52:14 PM »
Hello MINE,

Seam line editing is not supported in the actual version of PhotoScan, so you need either to use masks as suggested, or completely disable images with high roll/pitch angles prior to orthophoto export.

13053
General / Re: Problem with orthophoto seamlines!!
« on: May 28, 2014, 01:56:38 PM »
Hello MINE,

Could you post the screenshot of the Chunk Info dialog with the processing parameters used and also solid view of the model in PhotoScan project window.

13054
General / Re: Here I go again..8bit, 16bit, 32..
« on: May 28, 2014, 01:54:27 PM »
Hello bmc130,

If you require to have HDR texture you need to convert input files to 32bit images, otherwise (even with 16-bit imagery) the resulting texture will be 8-bit image.

But during processing stages like camera alignment and geometry reconstruction the full range will be used.

13055
Python and Java API / Re: question about exportOrthophoto function
« on: May 27, 2014, 09:19:27 PM »
Hello Chester Lee,


.exportOrthophoto method has the following arguments:
(path, format='tif', blending='mosaic', color_correction=False, [projection], [region], [dx], [dy], [blockw], [blockh], write_kml=False, write_world=False)

if you are skipping some arguments and leaving default values, you need to specify the arguments' names used.

13056
Feature Requests / Re: notification using e-mail
« on: May 27, 2014, 12:05:32 PM »
Hello Exhale,

Once I've tried the following script, but haven't checked it lately, so I'm not sure if it works for non-gmail boxes. Also note that e-mail address and password should be input in the sample script body:

Code: [Select]
import PhotoScan
import smtplib

gmail_user = "email@gmail.com"
gmail_pwd = "password"
FROM = "email@gmail.com"
TO = ['test@agisoft.ru'] #must be a list
SUBJECT = "Testing sending using gmail"
TEXT = "Testing sending mail using gmail servers"

# Prepare actual message
message = """\From: %s\nTo: %s\nSubject: %s\n\n%s
""" % (FROM, ", ".join(TO), SUBJECT, TEXT)
try:
#server = smtplib.SMTP(SERVER)
server = smtplib.SMTP("smtp.gmail.com", 587) #or port 465 doesn't seem to work!
server.ehlo()
server.starttls()
server.login(gmail_user, gmail_pwd)
server.sendmail(FROM, TO, message)
#server.quit()
server.close()
print('successfully sent the mail')
except:
print( "failed to send mail")

13057
General / Re: Sloooow Decimating Mesh..
« on: May 27, 2014, 10:44:14 AM »
Hello bmc130,

If you are using PhotoScan Professional, you can use Python scripting to duplicate original chunk several times and adjust bounding box in the chunks' copies so that they (bounding boxes) form a grid. In this case you'll be able to generate smaller meshes based on the same dense cloud and then merge them into single chunk model.

13058
General / Re: Sloooow Decimating Mesh..
« on: May 26, 2014, 04:05:15 PM »
Hello bmc130,

Memory consumption for mesh decimation stage depend on the number of polygons in the source model. You can find approximate memory consumption peak for this operation on our Wiki pages:
http://www.agisoft.ru/wiki/PhotoScan/Tips_and_Tricks#Memory_Requirements

Have you checked if the memory limit is reached by PhotoScan during second chunk decimation.

13059
Face and Body Scanning / Re: Symmetrical object
« on: May 23, 2014, 03:08:18 PM »
Hello,

I think that you are experiencing similar problems that have been mentioned in another topic:
http://www.agisoft.ru/forum/index.php?topic=2338
The problem may be related to the poor texture of the object (blinking and untextured car surface).

Maybe you can share the dataset and send the link to support@agisoft.ru.

13060
General / Re: Is my .psz salvable after a blue screen of death?
« on: May 23, 2014, 02:40:06 PM »
Hello aggieair,

Any unsaved data could not be recovered.
If the project file could not be opened you can apply Zip-fix utility to it to recover all the possible data.

Could you please also specify the hardware configuration of your computer and dense cloud generation parameters?

13061
General / Re: Mutli-Camera shooting, different lens sizes ok?
« on: May 23, 2014, 02:03:42 PM »
Hello Mitch,

It is possible to use different cameras/lens in the same project. They will be calibrated individually according to the calibration groups specified in the Tools menu -> Camera Calibration dialog.

13062
Python and Java API / Re: Install python libraries
« on: May 23, 2014, 01:41:10 PM »
Hello WickedShell,

PhotoScan doesn't use Python installed on the system, as it comes with it's own Python. So you need to install external modules to the following folder:
C:\Program Files\Agisoft\PhotoScan Pro\python\Lib\site-packages

Then you need to use import modulename command from the Console pane or script.

13063
Bug Reports / Re: Can't load OpenCL library
« on: May 23, 2014, 12:11:09 PM »
Hello lefsky,

Please make sure that libOpenCL.so file exists and points to libOpenCL.so.1.0.0.

13064
In principle, it is possible to orient not aligned images using only XYZ and yaw, pitch, roll information using Python scripting, but such cameras may be several meters away from the expected positions due to low accuracy GPS data, for example. And also such cameras will be only used for orthophoto/texture generation.

13065
Bug Reports / Re: display problem with 16bit TIFF's
« on: May 19, 2014, 07:55:43 PM »
Hello bisenberger,

Maybe something's wrong with the input coordinates? Please check Ground Control pane source values and specified coordinate system.

Pages: 1 ... 869 870 [871] 872 873 ... 990