~ubuntu-branches/ubuntu/karmic/gimp/karmic-security

« back to all changes in this revision

Viewing changes to plug-ins/pygimp/plug-ins/benchmark-foreground-extract.py

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-10-06 13:30:41 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20081006133041-axco233xt49jobn7
Tags: 2.6.0-1ubuntu1
* Sync on debian and new version (lp: #276839)
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch:
  - updated some strings for ubuntu
* debian/rules:
  - updated translation templates

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    if not os.path.exists (folder):
49
49
        gimp.message("Folder '" + folder + "' doesn't exist.\n")
50
50
        return;
51
 
    
 
51
 
52
52
    total_unclassified = 0
53
53
    total_misclassified = 0
54
54
    total_time = 0.0
193
193
                  "~/segmentation/msbench/imagedata"),
194
194
      (PF_TOGGLE, "save-output",  "Save output images", False) ],
195
195
    [],
196
 
    benchmark, menu="<Toolbox>/Xtns/Benchmark")
 
196
    benchmark, menu="<Image>/Filters/Extensions/Benchmark")
197
197
 
198
198
main ()