Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
bob.ap
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bob
bob.ap
Commits
f63376f8
Commit
f63376f8
authored
Jul 29, 2014
by
André Anjos
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed more Bob/C++ ties
parent
254954ae
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
5 deletions
+12
-5
bob/ap/cpp/Ceps.cpp
bob/ap/cpp/Ceps.cpp
+1
-1
bob/ap/cpp/Energy.cpp
bob/ap/cpp/Energy.cpp
+1
-1
bob/ap/cpp/FrameExtractor.cpp
bob/ap/cpp/FrameExtractor.cpp
+1
-1
bob/ap/cpp/Spectrogram.cpp
bob/ap/cpp/Spectrogram.cpp
+1
-1
buildout.cfg
buildout.cfg
+2
-0
setup.py
setup.py
+6
-1
No files found.
bob/ap/cpp/Ceps.cpp
View file @
f63376f8
...
...
@@ -10,7 +10,7 @@
*/
#include "Ceps.h"
#include <bob
/
core/assert.h>
#include <bob
.
core/assert.h>
bob
::
ap
::
Ceps
::
Ceps
(
const
double
sampling_frequency
,
const
double
win_length_ms
,
const
double
win_shift_ms
,
...
...
bob/ap/cpp/Energy.cpp
View file @
f63376f8
...
...
@@ -7,7 +7,7 @@
*/
#include "Energy.h"
#include <bob
/
core/assert.h>
#include <bob
.
core/assert.h>
bob
::
ap
::
Energy
::
Energy
(
const
double
sampling_frequency
,
const
double
win_length_ms
,
const
double
win_shift_ms
)
:
...
...
bob/ap/cpp/FrameExtractor.cpp
View file @
f63376f8
...
...
@@ -9,7 +9,7 @@
#include <stdexcept>
#include "FrameExtractor.h"
#include <bob
/
core/check.h>
#include <bob
.
core/check.h>
bob
::
ap
::
FrameExtractor
::
FrameExtractor
(
const
double
sampling_frequency
,
const
double
win_length_ms
,
const
double
win_shift_ms
)
:
...
...
bob/ap/cpp/Spectrogram.cpp
View file @
f63376f8
...
...
@@ -8,7 +8,7 @@
*/
#include "Spectrogram.h"
#include <bob
/
core/assert.h>
#include <bob
.
core/assert.h>
#include <bob/core/cast.h>
bob
::
ap
::
Spectrogram
::
Spectrogram
(
const
double
sampling_frequency
,
...
...
buildout.cfg
View file @
f63376f8
...
...
@@ -10,6 +10,7 @@ extensions = bob.buildout
auto-checkout = *
develop = src/bob.extension
src/bob.blitz
src/bob.core
src/bob.sp
.
...
...
@@ -22,6 +23,7 @@ prefixes = /idiap/group/torch5spro/nightlies/last/bob/linux-x86_64-release
[sources]
bob.extension = git https://github.com/bioidiap/bob.extension
bob.blitz = git https://github.com/bioidiap/bob.blitz
bob.core = git https://github.com/bioidiap/bob.core
bob.sp = git https://github.com/bioidiap/bob.sp
[scripts]
...
...
setup.py
View file @
f63376f8
...
...
@@ -4,8 +4,11 @@
# Thu 30 Jan 08:45:49 2014 CET
from
setuptools
import
setup
,
find_packages
,
dist
dist
.
Distribution
(
dict
(
setup_requires
=
[
'bob.blitz'
]))
dist
.
Distribution
(
dict
(
setup_requires
=
[
'bob.blitz'
,
'bob.core'
]))
from
bob.blitz.extension
import
Extension
import
bob.core
include_dirs
=
[
bob
.
core
.
get_include
()]
packages
=
[
'bob-core >= 1.2.2'
,
'bob-sp >= 1.2.2'
]
version
=
'2.0.0a0'
...
...
@@ -29,6 +32,7 @@ setup(
install_requires
=
[
'setuptools'
,
'bob.blitz'
,
'bob.core'
,
'bob.sp'
,
# for testing
'scipy'
,
# for testing
],
...
...
@@ -58,6 +62,7 @@ setup(
"bob/ap/ceps.cpp"
,
"bob/ap/main.cpp"
,
],
include_dirs
=
include_dirs
,
packages
=
packages
,
version
=
version
,
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment